-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "@antv/g-webgpu",
"version": "2.0.44",
"description": "A renderer implemented by WebGPU",
"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-plugin-device-renderer": "workspace:*",
"@antv/g-plugin-dom-interaction": "workspace:*",
"@antv/g-plugin-html-renderer": "workspace:*",
"@antv/g-plugin-image-loader": "workspace:*",
"@antv/util": "^3.3.5",
"@babel/runtime": "^7.25.6",
"@webgpu/types": "^0.1.6",
"tslib": "^2.5.3"
},
"devDependencies": {
"@types/gl-matrix": "^2.4.5",
"@types/offscreencanvas": "^2019.6.4"
},
"publishConfig": {
"access": "public"
}
}