-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.87 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.87 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
89
{
"name": "webgpu-template",
"version": "0.0.1",
"type": "module",
"description": "A template for WebGPU projects using TypeScript.",
"author": "Václav Vančura",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ambilab/webgpu-template.git"
},
"homepage": "https://github.com/ambilab/webgpu-template#readme",
"bugs": {
"url": "https://github.com/ambilab/webgpu-template/issues"
},
"keywords": [
"webgpu",
"typescript",
"template",
"webgpu-template"
],
"engines": {
"node": ">=20.0.0"
},
"main": "./dist/webgpu-template.cjs",
"module": "./dist/webgpu-template.js",
"types": "./dist/WebGPU-Template.d.ts",
"exports": {
".": {
"types": "./dist/WebGPU-Template.d.ts",
"import": "./dist/webgpu-template.js",
"require": "./dist/webgpu-template.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"build:lib": "vite build --mode lib",
"build:deploy": "pnpm build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "biome format --write . && prettier --write \"**/*.{md,mdx,yml,yaml}\"",
"format:check": "biome check . && prettier --check \"**/*.{md,mdx,yml,yaml}\"",
"format:biome": "biome format --write .",
"format:prettier": "prettier --write \"**/*.{md,mdx,yml,yaml}\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist node_modules/.vite dist-electron",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build:lib && changeset publish",
"version:bump": "pnpm changeset:version && pnpm install --no-frozen-lockfile",
"release": "pnpm build:lib && pnpm changeset:publish",
"prepublishOnly": "pnpm run build:lib",
"prepare": "husky"
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@webgpu/types": "^0.1.67",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vite-plugin-dts": "^4.5.4"
}
}