-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.38 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": "google-sheets-scripting-starter-pack",
"version": "1.0.0",
"main": "build/script.js",
"repository": "https://github.com/niieani/google-sheets-scripting-starter-pack",
"author": "Bazyli Brzoska <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "rollup --config rollup.config.mjs",
"google:login": "clasp login",
"google:create": "clasp create --type sheets --rootDir 'build'",
"google:publish": "yarn build && clasp push",
"google:open": "clasp open"
},
"devDependencies": {
"@google/clasp": "^2.4.2",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/google-apps-script": "^1.0.59",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"dependencies": {
"axios": "^1.3.5",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"stream-browserify": "^3.0.0",
"tslib": "^2.5.0",
"url": "^0.11.0"
},
"prettier": {
"semi": false,
"trailingComma": "all",
"singleQuote": true
}
}