-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.02 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
{
"private": true,
"name": "com.genshin.deck",
"version": "1.0.6",
"author": "fcannizzaro",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"start": "npx ts-node ./src/index.ts -debug com.genshin.deck",
"build": "npm run build:ts && npm run build:bin",
"build:ts": "npx tsc -outDir dist",
"build:bin": "npx pkg package.json --compress GZip -o plugin/com.genshin.deck"
},
"pkg": {
"targets": [
"node16-windows-x64"
],
"assets": [
"./node_modules/canvas/build/Release/*",
"./images"
]
},
"dependencies": {
"@stream-deck-for-node/sdk": "1.0.15",
"axios": "^0.25.0",
"canvas": "^2.9.0",
"crypto-js": "^4.1.1",
"file-system-cache": "^2.0.0",
"lodash.uniqby": "^4.7.0",
"timediff": "^1.1.1"
},
"devDependencies": {
"@types/crypto-js": "^4.1.0",
"@types/lodash.uniqby": "^4.7.7",
"@types/node": "^16.11.12",
"pkg": "^5.7.0",
"prettier": "^2.7.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
}
}