-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 885 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 885 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
{
"name": "web_graph",
"version": "1.0.0",
"description": "This package allows easy implementation of line graph or histogram, radar, bubble graph.",
"repository": "https://github.com/MTtankkeo/web_graph",
"bugs": "https://github.com/MTtankkeo/web_graph/issues",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"keywords": [
"web",
"frontend",
"client-side",
"graph"
],
"author": "Dev Ttangkong",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.14.2",
"rollup-plugin-typescript2": "^0.36.0",
"terser": "^5.30.3",
"typescript": "^5.4.5"
},
"dependencies": {
"animatable-js": "^1.2.0-alpha.6"
}
}