-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.51 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
{
"name": "gpuu",
"type": "module",
"version": "1.0.7",
"packageManager": "pnpm@10.33.0",
"description": "A collection of utilities for working with GPUs, especially for WebGPU.",
"author": {
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
"url": "https://github.com/nekomeowww"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moeru-ai/gpuu.git"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./webgpu": {
"types": "./dist/webgpu/index.d.mts",
"default": "./dist/webgpu/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "tsdown",
"stub": "tsdown",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"attw": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm",
"up": "taze -w -r -I -f && pnpm prune && pnpm dedupe"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@arethetypeswrong/cli": "^0.18.2",
"@types/node": "^25.6.0",
"@webgpu/types": "^0.1.69",
"bumpp": "^11.0.1",
"eslint": "^10.2.0",
"taze": "^19.11.0",
"tsdown": "^0.21.8",
"typescript": "^6.0.2",
"unplugin-unused": "^0.5.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
}
}