-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 939 Bytes
/
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
{
"name": "cbezier",
"version": "1.0.0",
"description": "cbezier provide animation effects and graphics drawing with cubic bezier curve.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "test",
"build": "tsc && rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js --watch",
"rimraf": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heavis/cbezier.git"
},
"keywords": [
"cubic",
"bezier",
"curve",
"animation",
"graphics"
],
"author": "heavi",
"license": "ISC",
"bugs": {
"url": "https://github.com/heavis/cbezier/issues"
},
"homepage": "https://github.com/heavis/cbezier#readme",
"devDependencies": {
"@open-wc/building-rollup": "^2.2.1",
"@rollup/plugin-typescript": "^11.0.0",
"deepmerge": "^4.3.0",
"rimraf": "^4.4.0",
"rollup": "^3.19.1",
"typescript": "^4.9.5"
}
}