-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"name": "@adshares/decentraland",
"version": "2.3.1",
"display-name": "Adshares DCL plugin",
"description": "Adshares Decentraland SDK plugin",
"author": "Adshares <dev@adshares.net>",
"license": "GPL-3.0",
"keywords": [
"adshares",
"ads",
"decentraland",
"dcl",
"sdk",
"library"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adshares/decentraland.git"
},
"bugs": {
"url": "https://github.com/adshares/decentraland/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"homepage": "https://github.com/adshares/decentraland#readme",
"decentralandLibrary": {
"main": "./dist/index.js"
},
"files": [
"dist",
"!dist/types",
"src",
"models"
],
"scripts": {
"build": "rollup -c",
"link": "npm link && rollup --watch -c "
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0",
"yarn": "please use npm"
},
"dependencies": {
"decentraland-ecs": "^6.11.15"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^8.3.1",
"rollup": "^2.70.1",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
}
}