This repository has been archived by the owner on Jan 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shortcut-api",
"version": "4.1.3-alpha.1",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"type": "module",
"description": "An API Wrapper for Shortcut, using an object oriented approach to interact with the Shortcut API",
"scripts": {
"build": "rm -rf dist && npm run compile:esm && npm run compile:cjs && npm run replace-paths && npm run rename:esm && npm run rename:cjs && npm run reformat-imports:esm && npm run reformat-imports:cjs",
"compile:esm": "tsc -p tsconfig.esm.json",
"compile:cjs": "tsc -p tsconfig.cjs.json",
"rename:esm": "renamer --path-element ext --find js --replace mjs './dist/esm/**/*.js'",
"rename:cjs": "renamer --path-element ext --find js --replace cjs './dist/cjs/**/*.js'",
"replace-paths": "tscpaths -p tsconfig.esm.json -s ./src -o ./dist/esm && tscpaths -p tsconfig.cjs.json -s ./src -o ./dist/cjs",
"reformat-imports:esm": "node scripts/reformat-esm-imports.js",
"reformat-imports:cjs": "node scripts/reformat-cjs-imports.js",
"prepublishOnly": "npm run build",
"test": "jest",
"docs": "npx typedoc",
"lint": "eslint --ext ts src",
"lint:fix": "eslint src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@jens_astrup/tscpaths": "^0.0.11",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.57.0",
"eslint-config-yenz": "^5.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-perfectionist": "^2.7.0",
"jest": "^29.7.0",
"renamer": "^5.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths-jest": "^0.0.1",
"tscpaths": "^0.0.9",
"typedoc-plugin-coverage": "^3.1.0",
"typescript": "^5.4.4"
},
"dependencies": {
"axios": "^1.6.7"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}