-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.04 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"name": "openhttpa-rs",
"description": "The OpenHTTPA Protocol Reference Implementation",
"version": "0.1.1",
"author": "The OpenHTTPA Foundation (openhttpa.org)",
"license": "Apache-2.0 OR MIT",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"fmt": "node node_modules/prettier/bin/prettier.cjs --write . --ignore-path .prettierignore",
"fmt:check": "node node_modules/prettier/bin/prettier.cjs --check . --ignore-path .prettierignore",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^25.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3"
},
"lint-staged": {
"*.rs": [
"cargo fmt --",
"bash -c 'OPENHTTPA_SKIP_ZK_BUILD=1 RISC0_SKIP_BUILD=1 RISC0_SKIP_BUILD_KERNELS=1 cargo clippy --workspace --all-targets -- -D warnings' --"
],
"*.{js,ts,jsx,tsx,json,md}": "pnpm exec prettier --write"
}
}