-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 KB
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
{
"author": "Amit Agarwal <amit@labnol.org> (https://www.labnol.org)",
"dependencies": {
"apps-script-oauth2": "github:googleworkspace/apps-script-oauth2"
},
"description": "Setup a local development environment for Google Apps Script with Visual Studio Code",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@google/clasp": "^3.3.0",
"@types/google-apps-script": "^2.0.8",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-googleappsscript": "^1.0.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsonc": "^3.1.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"query-string": "^9.3.1",
"vite": "^8.0.1",
"vite-plugin-static-copy": "^4.0.0"
},
"homepage": "https://digitalinspiration.com/",
"keywords": [
"google-apps-script",
"google-workspace"
],
"license": "MIT",
"name": "apps-script-starter",
"scripts": {
"build": "vite build --config vite.config.js",
"deploy": "npm run build && npm run upload",
"dev": "vite build --config vite.config.js --mode development --watch",
"format": "prettier --write .",
"lint": "eslint .",
"postbuild": "npx prettier --write dist/**/*.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"upload": "npx clasp push"
},
"type": "module",
"version": "14.3.0"
}