-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@scenejs/media",
"version": "0.2.2",
"description": "A library for media control.",
"main": "./dist/media.cjs.js",
"module": "dist/media.esm.js",
"sideEffects": false,
"types": "declaration/index.d.ts",
"scripts": {
"start": "rollup -c -w",
"build": "rm -rf dist && rollup -c && npm run declaration",
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json",
"release": "npm run build && release"
},
"keywords": [
"scene",
"scenejs",
"animate",
"animation",
"css",
"requestAnimationFrame",
"motion",
"audio",
"video",
"media"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/scenejs-media.git"
},
"author": "Daybrush",
"license": "MIT",
"bugs": {
"url": "https://github.com/daybrush/scenejs-media/issues"
},
"homepage": "https://github.com/daybrush/scenejs-media#readme",
"dependencies": {
"@daybrush/utils": "^1.6.0",
"scenejs": "^1.9.4"
},
"devDependencies": {
"@daybrush/builder": "^0.2.0",
"@daybrush/release": "^0.7.1",
"@scenejs/timeline": "0.0.9",
"tslint": "^5.14.0",
"typescript": "^4.6.3"
}
}