-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
38
39
{
"name": "webgpu-kit",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"docs": "turbo run docs",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "git clean -fXd -e \\!node_modules -e \\!**/node_modules",
"clean:deps": "git clean -fXd",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"dependencies": {
"@webgpu/types": "0.1.34"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"tsconfig": "workspace:*",
"eslint-config-custom": "workspace:*",
"turbo": "latest",
"typedoc": "npm:@jberesford/[email protected]"
},
"pnpm": {
"overrides": {
"typedoc": "$typedoc",
"next": "^13.4.19",
"@next/eslint-plugin-next": "^13.4.19",
"eslint-plugin-turbo": "^1.12.3",
"@webgpu/types": "$@webgpu/types"
}
},
"packageManager": "[email protected]"
}