-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.28 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
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
{
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@webgpu/types": "^0.1.51",
"esbuild": "^0.19.12",
"eslint": "^9.16.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "2.8.8",
"rimraf": "^5.0.5",
"rollup": "^4.28.1",
"rollup-plugin-esbuild": "^6.1.1",
"typedoc": "^0.27.6",
"typedoc-plugin-mdn-links": "^4.0.7",
"typescript": "^5.1.3",
"vite": "^5.2.14"
},
"name": "gpu-curtains",
"version": "0.10.1",
"description": "gpu-curtains is a 3D WebGPU rendering engine. It can be used as a standalone 3D engine, but also includes extra classes focused on mapping 3d objects to DOM elements; It allows users to synchronize values such as position, sizing, or scale between them.",
"keywords": [
"webgpu",
"wgsl",
"dom",
"html5",
"javascript",
"3d",
"canvas",
"curtains",
"gpu-curtains"
],
"author": {
"name": "Martin Laxenaire",
"email": "[email protected]",
"url": "https://martin-laxenaire.fr/"
},
"homepage": "https://martinlaxenaire.github.io/gpu-curtains/",
"bugs": {
"url": "https://github.com/martinlaxenaire/gpu-curtains/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/martinlaxenaire/gpu-curtains.git"
},
"license": "MIT",
"dependencies": {},
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/gpu-curtains.umd.js",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"module": "./dist/esm/index.mjs",
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": "./dist/gpu-curtains.umd.js",
"default": "./dist/esm/index.mjs"
},
"./package.json": "./package.json"
},
"types": "./dist/types/index.d.ts",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"dev": "vite --host",
"build:docs": "rimraf docs && typedoc --options typedoc.json",
"build:types": "rimraf dist/types && tsc --allowJs -d --emitDeclarationOnly",
"build:lib": "rimraf dist/esm && rollup -c",
"build:dist": "yarn build:types && yarn build:lib",
"build": "yarn build:dist && yarn build:docs"
}
}