-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "anyphoto",
"version": "1.0.0",
"description": "Photo by any inspiration",
"main": "src/cmd/generate.js",
"files": [
"bin",
"src",
"!src/themes/**/*.png"
],
"author": {
"name": "xdzi8b",
"email": "[email protected]",
"url": "https://github.com/weirui88888/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/weirui88888/anyphoto.git"
},
"homepage": "https://www.anyphoto.space",
"scripts": {
"prepare": "husky install",
"lint": "eslint . --fix",
"commit": "cz",
"init": "node ./bin/index.js init",
"gen": "node ./bin/index.js generate",
"gen:clear": "node ./bin/index.js generate -c"
},
"keywords": [
"image",
"canvas",
"executable",
"node"
],
"license": "MIT",
"volta": {
"node": "18.0.0"
},
"bin": {
"anyphoto": "./bin/index.js"
},
"lint-staged": {
"*.js": [
"npx eslint . --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@types/node": "^20.6.2",
"ansi-colors": "^4.1.3",
"axios": "^1.5.1",
"base64-img": "^1.0.4",
"canvas": "^2.11.2",
"cli-progress": "^3.12.0",
"cli-table": "^0.3.4",
"commander": "^11.0.0",
"figlet": "^1.6.0",
"is-image-url": "^1.1.8",
"langdetect": "^0.2.1",
"open": "^8.4.0",
"ora": "^5.4.1",
"validate-color": "^2.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1"
}
}