-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "toml-edit-js",
"version": "0.6.5",
"private": true,
"type": "module",
"scripts": {
"build": "wasmup build .",
"build:debug": "wasmup build --dev . && pnpm debug:cp",
"debug:cp": "cp tests/fixture/debug.html packages/toml-edit-js/",
"bump": "cross-release -ayx 'pnpm changelog'",
"changelog": "conventional-changelog -si CHANGELOG.md",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"prepare": "husky",
"release": "pnpm bump && pnpm build && pnpm -r publish",
"test": "vitest",
"test:wasm": "wasm-pack test --chrome",
"test:rust": "cargo test --lib",
"coverage:rust": "cargo llvm-cov --lib --fail-under-lines 20",
"bench": "vitest bench",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.4.4",
"@types/node": "^25.5.0",
"commitlint": "^20.4.4",
"conventional-changelog": "^7.2.0",
"cross-release-cli": "^0.5.0",
"dedent": "^1.7.2",
"husky": "^9.1.7",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"wasmup": "^0.10.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0,
"never"
]
}
},
"packageManager": "pnpm@10.32.1"
}