-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 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
{
"name": "@wap-labs/root",
"private": true,
"version": "0.3.0",
"description": "Root scripts for WaveNav/Lowband polyglot repository",
"license": "MIT",
"author": "Dylan Steele <dylansteele57@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/dills122/wap-labs.git"
},
"homepage": "https://dills122.github.io/wap-labs/",
"packageManager": "pnpm@10.23.0",
"pnpm": {
"overrides": {
"flatted": "^3.4.0",
"undici": "^7.24.0"
}
},
"scripts": {
"lint:node": "pnpm -r --if-present run lint",
"format:node": "pnpm -r --if-present run format",
"format:check:node": "pnpm -r --if-present run format:check",
"format:staged": "lint-staged --concurrent false",
"version:check": "node scripts/check-release-version.mjs",
"version:set": "node scripts/set-release-version.mjs",
"test:node": "pnpm -r --if-present run test",
"build:node": "pnpm -r --if-present run build",
"typecheck:node": "pnpm -r --if-present run typecheck"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"eslint-config-prettier": "catalog:",
"globals": "catalog:",
"lint-staged": "^16.4.0",
"prettier": "catalog:"
},
"lint-staged": {
"browser/frontend/src/**/*.{ts,css}": [
"prettier --write"
],
"engine-wasm/host-sample/**/*.{ts,css,html}": [
"prettier --ignore-path .prettierignore --write"
],
"{engine-wasm/engine,browser/src-tauri,transport-rust}/**/*.rs": [
"rustfmt --edition 2021"
]
}
}