-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
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
{
"name": "@amoy/constraint",
"moduleName": "constraint",
"version": "0.2.10",
"description": "constraint for pixi.js.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "NODE_ENV=development rollup -w -c rollup.config.js",
"dev": "NODE_ENV=development rollup -c rollup.config.js",
"prod": "NODE_ENV=production rollup -c rollup.config.js",
"build": "rm -rf dist && npm run dev && npm run prod && cp types/index.d.ts dist/"
},
"repository": {
"url": "https://github.com/amoyjs/constraint.git",
"type": "git"
},
"author": "大板栗 <576839360@qq.com>",
"license": "MIT",
"devDependencies": {
"eventemitter3": "^4.0.4",
"pixi.js": "^5.2.4",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
},
"peerDependencies": {
"eventemitter3": "^4.0.4",
"pixi.js": "^5.2.4"
}
}