-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.94 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
62
63
{
"name": "@scenejs/effects",
"version": "1.0.2",
"description": "Effect collection library where you can add effects with Scene.js",
"main": "./dist/effects.cjs.js",
"module": "./dist/effects.esm.js",
"sideEffects": false,
"types": "declaration/index.d.ts",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c && npm run declaration && print-sizes ./dist",
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json",
"doc": "rm -rf ./doc && jsdoc -c jsdoc.json",
"release:build": "npm run build && npm run doc && prerelease --dirs=dist,doc",
"release": "npm run build && npm run doc && release --dirs=dist,doc",
"release:init": "npm run build && release -i --dirs=dist,doc",
"deploy": "gh-pages -d ./demo --dest=./ --add --remote origin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/scenejs-effects.git"
},
"author": "Daybrush",
"license": "MIT",
"keywords": [
"kinetic",
"typing",
"vfx",
"flip",
"transition",
"shake",
"scene",
"scene.js",
"scenejs",
"keyframes",
"timeline",
"animate",
"animation",
"css",
"requestAnimationFrame",
"motion"
],
"bugs": {
"url": "https://github.com/daybrush/scenejs-effects/issues"
},
"homepage": "https://github.com/daybrush/scenejs-effects#readme",
"dependencies": {
"@daybrush/utils": "^1.11.0",
"keyframer": "^0.1.1",
"scenejs": "^1.1.0"
},
"devDependencies": {
"@daybrush/builder": "^0.2.4",
"@daybrush/jsdoc": "^0.4.7",
"@daybrush/release": "^0.2.4",
"daybrush-jsdoc-template": "^1.10.0",
"gh-pages": "^2.0.1",
"print-sizes": "^0.2.0",
"tslib": "^2.5.2",
"tslint": "^5.16.0",
"typescript": "^4.5.0"
}
}