-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "dcl-video-system",
"version": "1.0.0",
"description": "DCL Video System to switch between a live stream and a playlist of videos",
"main": "./dist/index.js",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"link": "npm link && rollup --watch -c --environment BUILD:production"
},
"typings": "./dist/index.d.ts",
"decentralandLibrary": {
"main": "./dist/index.js"
},
"keywords": [
"dcl",
"decentraland",
"sdk",
"library"
],
"author": "-",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/$author/$name"
},
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"decentraland-ecs": "latest",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0",
"yarn": "please use npm"
}
}