-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "udon-decompiler-tools",
"private": true,
"type": "module",
"scripts": {
"cases:build-input": "node --experimental-strip-types tools/case-md.ts build-input",
"cases:update-md": "node --experimental-strip-types tools/case-md.ts update-md",
"build:bump": "node --experimental-strip-types tools/bump-version.ts",
"docs:serve": "shiroa serve --root . docs --mode static-html",
"docs:build": "shiroa build --root . docs --mode static-html",
"ci:test": "cargo insta test --test e2e -- --nocapture",
"ci:check": "cargo fmt --check && cargo clippy --all-targets -- -D warnings && yarn biome check && git ls-files '*.cs' | xargs yarn clang-format --dry-run --Werror --style=file:.clang-format && dotnet build && yarn ci:test",
"ci:fix": "cargo fmt && cargo clippy --fix --allow-dirty && yarn biome check --fix && git ls-files -z '*.cs' | xargs -0 yarn clang-format -i --style=file:.clang-format"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@rainbowatcher/toml-edit-js": "0.6.1",
"@types/node": "^24.12.0"
},
"dependencies": {
"clang-format-node": "^3.0.0"
}
}