-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "@iro/interaction",
"version": "1.3.0",
"description": "",
"type": "module",
"main": "dist/interaction.min.js",
"module": "dist/interaction.es.js",
"browserslist": [
"android >= 10",
"ios >= 10"
],
"scripts": {
"build": "rm -fr dist & rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JetLua/interaction.git"
},
"keywords": [
"pixi.js",
"plugin",
"interaction"
],
"author": "JetLu",
"license": "MIT",
"bugs": {
"url": "https://github.com/JetLua/interaction/issues"
},
"homepage": "https://github.com/JetLua/interaction#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.7",
"@babel/runtime-corejs3": "^7.20.7",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.7",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.1",
"rollup": "^3.9.1"
},
"peerDependencies": {
"pixi.js": "^6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"pixi.js": "^6.5.8"
}
}