-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 859 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 859 Bytes
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
{
"name": "@acrodata/visual-component-api",
"version": "0.9.0",
"description": "Visual component type definitions",
"publishConfig": {
"access": "public"
},
"types": "dist/index",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"viz",
"visual",
"visualization"
],
"author": "nzbin<nzb329@163.com>",
"license": "MIT",
"scripts": {
"build": "npx tsc -p tsconfig.json",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"peerDependencies": {
"@acrodata/gui": ">=2.0.0"
},
"dependencies": {
"lodash-es": "^4.17.21",
"tslib": "^2.3.0"
},
"devDependencies": {
"@acrodata/gui": "^3.0.0",
"@angular/core": "^18.2.0",
"@types/lodash-es": "^4.17.6",
"prettier": "^3.4.2",
"rimraf": "^5.0.0",
"typescript": "~5.5.2"
}
}