-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.37 KB
/
package.json
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
{
"name": "wgsl-debug",
"description": "Typescript library providing print-like function to WGSL shader",
"version": "0.0.1",
"main": "./dist/wgsl-debug.umd.js",
"module": "./dist/wgsl-debug.es.js",
"types": "./wgsl-debug.d.ts",
"keywords": ["shader", "debug", "print", "webgpu", "wgsl"],
"author": "Laurent Ghigonis",
"license": "BSD-3-Clause",
"homepage": "https://github.com/looran/wgsl-debug",
"repository": {
"type": "git",
"url": "https://github.com/looran/wgsl-debug"
},
"exports": {
".": {
"import": "./dist/wgsl-debug.es.js",
"require": "./dist/wgsl-debug.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc --project config/tsconfig.json --emitDeclarationOnly --outDir . --strict && vite build -c config/vite.config.ts",
"watch": "while :; do echo ================================================================================; date; echo; tsc --project config/tsconfig.json --emitDeclarationOnly --outDir . --strict && vite build -c config/vite.config.ts -w; date; echo; sleep 5; done",
"lint": "eslint src/ --ext .ts,.tsx -c config/eslintrc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@webgpu/types": "^0.1.13",
"eslint": "^8.10.0",
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vite-plugin-checker": "0.3.4"
}
}