-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) 路 2.91 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) 路 2.91 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@antv/a8",
"version": "0.0.1",
"description": "A music visualizer",
"keywords": [
"antv",
"music visualizer"
],
"repository": {
"type": "git",
"url": "https://github.com/antvis/a8"
},
"license": "MIT",
"author": {
"name": "xiaoiver",
"url": "https://github.com/xiaoiver"
},
"exports": {
"types": "./es/index.d.ts",
"import": "./es/index.js",
"default": "./lib/index.js"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"unpkg": "dist/index.umd.min.js",
"files": [
"lib",
"es",
"dist"
],
"scripts": {
"dev": "vite dev",
"deploy": "vite build",
"preview": "vite preview",
"build": "rollup -c",
"clean": "rimraf dist",
"eslint": "eslint --ext .ts,.js ./src --quiet",
"eslint-fix": "eslint --fix --ext .ts,.js ./src",
"lint": "npm run eslint",
"lint-staged": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"test": "jest",
"test:e2e": "npx playwright test",
"cov": "jest --coverage",
"sync": "tnpm sync"
},
"sideEffects": false,
"dependencies": {
"@antv/g-canvas": "^2.0.1",
"@antv/g-device-api": "^1.4.11",
"@antv/g-lite": "^2.0.1",
"@antv/util": "^3.3.4",
"eventemitter3": "^5.0.1",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^8.3.6",
"@commitlint/config-angular": "^9.1.2",
"@playwright/test": "^1.39.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^26.0.24",
"@types/offscreencanvas": "^2019.6.4",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@types/webxr": "0.5.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"case-police": "^0.5.10",
"eslint": "^7.32.0",
"eslint-plugin-jest": "24.3.6",
"get-pixels": "3.3.3",
"husky": "^7.0.4",
"jest": "^29.0.0",
"lil-gui": "^0.16.0",
"lint-staged": "^10.5.4",
"markdownlint-cli": "^0.32.2",
"pixelmatch": "5.3.0",
"pngjs": "^6.0.0",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"rollup": "^3.25.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-visualizer": "^5.9.2",
"stats.js": "^0.17.0",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.md": [
"markdownlint --fix",
"case-police --fix",
"prettier --write"
],
"*.{js,jsx,tsx,ts,vue}": [
"eslint --fix"
]
},
"publishConfig": {
"access": "public"
}
}