-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "@antv/g-plugin-device-renderer",
"version": "2.2.19",
"description": "A G plugin of renderer implementation with GPUDevice",
"keywords": [
"antv",
"g"
],
"homepage": "https://github.com/antvis/g#readme",
"bugs": {
"url": "https://github.com/antvis/g/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antvis/g.git"
},
"license": "MIT",
"author": "https://github.com/orgs/antvis/people",
"exports": {
"types": "./types/index.d.ts",
"import": "./dist/index.esm.js",
"default": "./dist/index.js"
},
"main": "dist/index.js",
"unpkg": "dist/index.umd.min.js",
"module": "dist/index.esm.js",
"types": "types/index.d.ts",
"files": [
"package.json",
"dist",
"types",
"LICENSE",
"README.md"
],
"scripts": {
"build:types": "tsc --emitDeclarationOnly --noCheck",
"build": "npm run clean && npm run build:types && rollup -c",
"clean": "rimraf dist",
"sync": "tnpm sync",
"watch": "rollup -c -w"
},
"dependencies": {
"@antv/g-device-api": "^1.6.10",
"@antv/g-lite": "workspace:*",
"@antv/g-math": "workspace:*",
"@antv/g-plugin-image-loader": "workspace:*",
"@antv/g-shader-components": "workspace:*",
"@antv/util": "^3.3.5",
"@babel/runtime": "^7.25.6",
"@webgpu/types": "^0.1.6",
"earcut": "^2.2.3",
"eventemitter3": "^5.0.1",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
},
"devDependencies": {
"@rollup/plugin-wasm": "^5.1.2",
"@types/earcut": "^2.1.1",
"@types/offscreencanvas": "^2019.6.4",
"@types/webxr": "0.5.5",
"glslify-import": "3.1.0",
"rollup-plugin-glslify": "^1.2.1"
},
"publishConfig": {
"access": "public"
},
"glslify": {
"transform": [
"glslify-import"
]
}
}