-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "voicevox_telemetry_gas",
"author": "Hiroshiba Kazuyuki",
"scripts": {
"build": "run-s build:clean build:rollup build:postprocess",
"build:clean": "rimraf ./dist",
"build:rollup": "rollup -c",
"build:postprocess": "ts-node ./scripts/buildPostProcess.ts",
"push": "clasp push --force",
"deploy": "ts-node ./scripts/deploy.ts",
"deploy:check": "ts-node ./scripts/deployCheck.ts",
"start": "run-s build push deploy",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.js",
"fmt": "eslint . --ext .ts,.js --fix"
},
"devDependencies": {
"@google/clasp": "2.4.2",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "11.0.0",
"@types/google-apps-script": "1.0.57",
"@types/node": "18.14.1",
"@types/node-fetch": "2.6.3",
"@types/uglify-js": "3.17.1",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"rimraf": "4.1.2",
"rollup": "3.17.2",
"ts-node": "10.9.1",
"tslib": "2.5.0",
"typescript": "4.9.5",
"uglify-js": "3.17.4"
},
"dependencies": {
"node-fetch": "2.6.9",
"yargs": "17.7.1",
"zod": "3.20.6"
}
}