-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "alfred-wechat-sticker",
"type": "module",
"version": "0.0.9",
"description": "",
"author": "Nauxscript",
"license": "MIT",
"scripts": {
"lint:fix": "eslint . --fix",
"test": "vitest",
"build": "npm run update:icons && npm run build:icons && unbuild",
"build:test": "pnpm run update:icons && pnpm run build:icons && unbuild",
"release": "bumpp package.json --commit --push --tag ",
"release:test": "pnpm build:test && ./build.sh",
"build:icons": "ts-node --esm ./scripts/image2data.ts",
"update:icons": "ts-node --esm ./scripts/updateSticker.ts",
"unzip": "ts-node --esm ./scripts/unzip.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@jxa/global-type": "^1.3.6",
"@types/download": "^8.0.2",
"@types/node": "^18.11.10",
"@types/request": "^2.48.8",
"bumpp": "^8.2.1",
"download": "^8.0.0",
"eslint": "^8.29.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"unbuild": "^1.0.1",
"vitest": "^0.25.3"
},
"peerDependencies": {
"@jxa/global-type": "^1.3.6"
},
"dependencies": {
"@types/adm-zip": "^0.5.0",
"adm-zip": "^0.5.10"
}
}