-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "apps-script-fleet",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run clean && pnpm run bundle && cp appsscript.json dist/appsscript.json && (cp src/*.html dist/ 2>/dev/null || true)",
"bundle": "rollup --no-treeshake -c rollup.config.mjs",
"check": "pnpm run lint && pnpm run lint:css && pnpm run lint:html && pnpm run typecheck && pnpm run test",
"clean": "rimraf build dist",
"deploy": "pnpm run check && pnpm run build && cp .clasp-dev.json .clasp.json && clasp push -f",
"deploy:prod": "pnpm run check && pnpm run build && cp .clasp-prod.json .clasp.json && clasp push",
"format": "oxfmt --write .",
"lint": "oxlint --fix src/ test/",
"lint:css": "stylelint '**/*.{css,scss,html}' --allow-empty-input",
"lint:html": "htmlhint --ignore 'coverage/**,dist/**' '**/*.html' || true",
"prepare": "husky",
"test": "jest test/ --passWithNoTests --detectOpenHandles --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@google/clasp": "3.3.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-swc": "0.4.1",
"@swc/core": "1.15.46",
"@swc/jest": "0.2.39",
"@types/google-apps-script": "2.0.11",
"@types/jest": "30.0.0",
"htmlhint": "1.9.2",
"husky": "9.1.7",
"jest": "30.4.2",
"lint-staged": "17.1.0",
"oxfmt": "0.60.0",
"oxlint": "1.75.0",
"postcss-html": "1.8.1",
"rimraf": "6.1.3",
"rollup": "4.62.2",
"rollup-plugin-cleanup": "3.2.1",
"stylelint": "17.14.0",
"stylelint-config-standard": "40.0.0",
"typescript": "7.0.2"
},
"lint-staged": {
"*.ts": [
"oxlint --fix",
"oxfmt --write"
],
"*.html": [
"htmlhint",
"oxfmt --write"
]
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.17.0+sha512.cca3cea332ad254bb84145f966d19f4879615210346fc92c79a047f23a0d7b3cca3c3792f0076ba1f1831d277efbcf0a9119b31a9a60eca7fb3d6231f331ef72"
}