-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "imgup",
"version": "2.0.2",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"format": "prettier --write \"**/**/*.{ts,js,tsx,jsx,md,html,css}\"",
"format:check": "prettier --check \"**/**/*.{ts,js,tsx,jsx,md,html,css}\"",
"build": "npm run clean && tsc && chmod +x ./dist/index.js",
"start": "tsc --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf ./dist/*",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:watch": "npm t -- --watch"
},
"husky": {
"hooks": {
"pre-push": "npm run format && npm run typecheck"
}
},
"bin": {
"imgup": "./dist/index.js"
},
"files": [
"./dist/**/*",
"./package.json",
"./test-data/**/*"
],
"dependencies": {
"axios": "^1.2.6",
"chalk": "^4.1.2",
"commander": "^10.0.0",
"configstore": "^6.0.0",
"file-type": "^18.2.0",
"form-data": "^4.0.0",
"inquirer": "^9.1.4",
"ora": "^6.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/configstore": "^6.0.0",
"@types/form-data": "^2.5.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.176",
"@types/node": "^16.18.11",
"husky": "^4.3.8",
"jest": "^29.4.2",
"prettier": "^2.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"ts-node": "^10.9.1"
}
}