-
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.66 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.66 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": "fractious",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "npm run build:wasm && npm run build:web",
"build:web": "vite build",
"build:wasm": "wasm-pack build wasm --target web",
"update:wasm": "cd wasm && cargo update",
"clean": "rimraf dist wasm/pkg wasm/target",
"preview": "vite preview",
"dev": "vite",
"lint": "eslint src",
"lint:sonar": "eslint src -c eslint.sonar.config.js",
"lint:security": "eslint src -c eslint.security.config.js",
"depcruise": "depcruise src",
"check": "npm run lint && npm run lint:sonar && npm run lint:security && npm run depcruise",
"test": "npm run test:wasm && npm run test:web",
"test:web": "vitest run",
"test:wasm": "cd wasm && wasm-pack test --node",
"format": "npm run format:web && npm run format:rust",
"format:web": "prettier --write .",
"format:rust": "cd wasm && cargo fmt",
"format:check": "npm run format:check:web && npm run format:check:rust",
"format:check:web": "prettier --check .",
"format:check:rust": "cd wasm && cargo fmt --check"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.0.18",
"dependency-cruiser": "^17.3.8",
"eslint": "^10.0.3",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.1",
"globals": "^17.4.0",
"happy-dom": "^20.8.3",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.18",
"wasm-pack": "^0.14.0"
}
}