forked from decentraland/decentraland-npc-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "@dcl/npc-scene-utils",
"version": "0.0.0-development",
"description": "A collection of tools for creating Non-Player-Characters (NPCs). These are capable of having conversations with the player, and play different animations.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"decentralandLibrary": {},
"files": [
"dist"
],
"scripts": {
"semantic-release": "semantic-release",
"build": "rollup -c --environment BUILD:production",
"link": "npm link && rollup --watch -c --environment BUILD:production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/decentraland-npc-utils.git"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"semi": false
},
"keywords": [],
"author": "Decentraland",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/decentraland/decentraland-npc-utils/issues"
},
"homepage": "https://github.com/decentraland/decentraland-npc-utils#readme",
"devDependencies": {
"prettier": "^1.19.1",
"semantic-release": "^16.0.1",
"typescript": "^3.9.3",
"rollup": "^2.35.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"decentraland-ecs": "latest"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
}
}