-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "decentraland-ui-utils",
"version": "0.0.0-development",
"description": "A collection of UI helpers to make it easier to build a Decentraland scene using the SDK.",
"main": "index.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"make": "cp -r src dist && cp package.json dist/package.json && cp LICENSE dist/LICENSE && cp README.md dist/README.md",
"makeclean": "rm -rf dist && npm run make",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/decentraland-crypto-utils.git"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"semi": false
},
"keywords": [],
"author": "Decentraland",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/decentraland/decentraland-ui-utils/issues"
},
"homepage": "https://github.com/decentraland/decentraland-ui-utils#readme",
"devDependencies": {
"prettier": "^1.19.1",
"semantic-release": "^16.0.1",
"typescript": "^3.9.3"
},
"dependencies": {
"decentraland-ecs": "next"
}
}