-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@awayfl/poki-player",
"version": "0.1.11",
"description": "AVM Player for poki games",
"main": "bundle/poki-player.umd.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"url": "http://www.away3d.com",
"author": "Rob Bateman",
"scripts": {
"rimraf": "rimraf",
"rollup": "rollup -c",
"tsc": "tsc",
"tsc:build": "npm run tsc || exit 0",
"webpack": "webpack",
"clean": "npm run rimraf -- dist bundle",
"clean:bin": "npm run rimraf -- bin",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run tsc -- --w",
"build": "npm run build:dev",
"prebuild:dev": "npm run clean:bin",
"build:dev": "webpack --config webpack.config.js --progress",
"prebuild:prod": "npm run clean:bin",
"build:prod": "webpack --config webpack.config.js --progress --env prod",
"server": "npm run server:dev",
"server:dev": "webpack-dev-server --config webpack.config.js --progress",
"server:dev:hmr": "npm run server:dev -- --hot",
"server:prod": "http-server bin --cors",
"start": "npm run server:dev",
"start:hmr": "npm run server:dev:hmr",
"yarnImport": "npm run rimraf -- yarn.lock && yarn import && git add ./yarn.lock && git commit -m \"update yarn.lock file\" || exit 0",
"copyVersionToIndex": "node ./scripts/copyVersionToIndex ./index.ts && git add ./index.ts && git commit -m \"update version number in index.ts\"",
"preversion": "npm run clean",
"version": "npm run yarnImport && npm run copyVersionToIndex && npm run tsc:build && npm run rollup",
"postversion": "git push && git push --tags && npm publish"
},
"keywords": [
"AwayFL",
"Flash",
"Emulator",
"2D",
"Graphics",
"WebGL",
"Typescript"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/awaystudios/poki-player/issues"
},
"homepage": "https://github.com/awaystudios/poki-player#readme",
"dependencies": {
"jszip": "^3.10.1"
},
"peerDependencies": {
"@awayfl/avm1": "^0.2.0",
"@awayfl/avm2": "^0.2.0",
"@awayfl/awayfl-player": "^0.2.0",
"@awayfl/playerglobal": "^0.2.0",
"@awayfl/swf-loader": "^0.4.0",
"@awayjs/core": "^0.9.0",
"@awayjs/graphics": "^0.5.0",
"@awayjs/materials": "^0.6.0",
"@awayjs/renderer": "^0.11.0",
"@awayjs/scene": "^0.13.0",
"@awayjs/stage": "^0.11.0",
"@awayjs/view": "^0.6.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@awayfl/avm1": "^0.2.0",
"@awayfl/avm2": "^0.2.0",
"@awayfl/awayfl-player": "^0.2.0",
"@awayfl/playerglobal": "^0.2.0",
"@awayfl/swf-loader": "^0.4.0",
"@awayjs/core": "^0.9.0",
"@awayjs/graphics": "^0.5.0",
"@awayjs/materials": "^0.6.0",
"@awayjs/renderer": "^0.11.0",
"@awayjs/scene": "^0.13.0",
"@awayjs/stage": "^0.11.0",
"@awayjs/view": "^0.6.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"rimraf": "^4.4.0",
"rollup": "^2.79.1",
"rollup-plugin-gzip": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"terser-webpack-plugin": "^5.3.7",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.12.0",
"webpack-merge": "^5.8.0"
}
}