-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "manabase",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"build": "tsdown",
"check": "pnpm run build && pnpm run lint",
"clasp:open": "clasp open",
"clasp:push": "pnpm run build && clasp push",
"format": "pnpm run lint --fix . ; oxfmt . ; eslint --fix .",
"preinstall": "npx only-allow pnpm",
"postinstall": "git config core.hooksPath .githooks",
"lint": "oxlint --type-aware --type-check",
"precommit": "pnpm run format"
},
"lint-staged": {
"src/**/*.ts": [
"pnpm run precommit"
],
"*.{js,mjs}": [
"pnpm run format"
],
"*.{json,jsonc}": [
"pnpm oxfmt ."
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@google/clasp": "catalog:",
"@stylistic/eslint-plugin": "catalog:",
"@types/google-apps-script": "catalog:",
"@typescript/native-preview": "catalog:",
"eslint": "catalog:",
"eslint-plugin-oxlint": "catalog:",
"lint-staged": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"sort-package-json": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
},
"packageManager": "pnpm@11.1.1"
}