-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.42 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.42 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "webgpu-sorting",
"version": "1.0.2",
"description": "WebGPU + WGSL sorting reference project with Bitonic Sort, Radix Sort, live demo, and TypeScript API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src/shaders"
],
"keywords": [
"webgpu",
"wgsl",
"sorting",
"bitonic-sort",
"radix-sort",
"compute-shaders",
"gpu-computing",
"benchmark",
"typescript"
],
"author": "WebGPU Sorting Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LessUp/webgpu-sorting.git"
},
"bugs": {
"url": "https://github.com/LessUp/webgpu-sorting/issues"
},
"homepage": "https://lessup.github.io/webgpu-sorting/",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:analyze": "tsc && vite build --mode analyze",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,yml,yaml}\"",
"typecheck": "tsc --noEmit",
"docs:generate": "typedoc --options typedoc.json",
"docs:serve": "npx serve docs/api",
"site:build": "node site/scripts/build-site.ts",
"site:dev": "npm run site:build && npx serve dist",
"pages:build": "bash scripts/build-pages.sh",
"pages:preview": "npm run pages:build && cd dist && npx serve",
"audit": "npm audit",
"audit:fix": "npm audit fix",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/coverage-v8": "^4.1.5",
"@webgpu/types": "^0.1.69",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.7.0",
"globals": "^17.5.0",
"husky": "^9.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"rollup-plugin-visualizer": "^7.0.1",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
}
}