-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.36 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.36 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@flashcatcloud/flashcat-cli",
"version": "0.1.0",
"description": "CLI tool for Flashcat Cloud",
"main": "dist/index.js",
"bin": {
"flashcat-cli": "./dist/cli.js"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"resolutions": {
"ini": "1.3.8"
},
"pkg": {
"scripts": [
"dist/commands/*/*.js"
],
"assets": [
"node_modules/axios/dist/node/axios.cjs"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -rf dist/*",
"format": "yarn eslint --fix",
"launch": "ts-node --transpile-only src/cli.ts",
"launch:debug": "node -r ts-node/register/transpile-only --inspect-brk src/cli.ts",
"lint": "yarn eslint",
"prepack": "yarn build && node ./bin/make-it-executable.js && rimraf 'dist/**/__tests__'",
"test": "jest --colors",
"test:debug": "node --inspect-brk node_modules/jest/bin/jest --runInBand",
"eslint": "eslint --quiet 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"watch": "tsc -w"
},
"keywords": [
"sourcemap",
"cli",
"upload"
],
"author": "Flashcat Cloud",
"license": "Apache-2.0",
"dependencies": {
"async-retry": "1.3.1",
"axios": "^1.8.4",
"chalk": "3.0.0",
"clipanion": "^3.2.1",
"deep-extend": "^0.6.0",
"form-data": "^4.0.0",
"glob": "^10.4.5",
"inquirer": "^8.2.5",
"js-yaml": "3.13.1",
"jszip": "^3.10.1",
"ora": "5.4.1",
"proxy-agent": "^6.4.0",
"semver": "^7.5.3",
"simple-git": "3.16.0",
"terminal-link": "2.1.1",
"tiny-async-pool": "^2.1.0",
"typanion": "^3.14.0"
},
"devDependencies": {
"@types/async-retry": "1.4.8",
"@types/deep-extend": "0.4.31",
"@types/inquirer": "8.2.6",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"@types/tiny-async-pool": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "4.0.0",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"prettier": "2.0.5",
"rimraf": "^5.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}