-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
41 lines (41 loc) · 1.36 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
{
"name": "openmv",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"build:core": "node ./concat.js rpg_core",
"build:managers": "node ./concat.js rpg_managers",
"build:objects": "node ./concat.js rpg_objects",
"build:scenes": "node ./concat.js rpg_scenes",
"build:sprites": "node ./concat.js rpg_sprites",
"build:windows": "node ./concat.js rpg_windows",
"watch": "node ./watch.js",
"build": "run-p build:*",
"copy:corescripts": "cpx './dist/*.js' ./game/js/",
"copy:libs": "cpx './js/libs/*.js' ./game/js/libs/",
"copy:main": "cpx './js/main.js' ./game/js/",
"copy:plugins": "cpx './plugins/*.js' ./game/js/plugins/",
"copy:template": "cpx './template/**/*' ./game/",
"copy": "run-p copy:*",
"copy-all": "node copy-all.js ./corescript",
"zip": "bestzip corescript.zip ./corescript/",
"test": "run-s build copy",
"unittest": "node ./tests/test-save.js",
"start": "http-server ./game/",
"package": "run-s build copy-all crc zip",
"crc": "node healthcheck/generate_crc.js"
},
"author": "rpgtkoolmv team",
"license": "MIT",
"devDependencies": {
"bestzip": "^1.1.3",
"concat-with-sourcemaps": "^1.0.4",
"cpx": "^1.5.0",
"crc-32": "^1.0.2",
"http-server": "^0.9.0",
"node-watch": "^0.4.1",
"npm-run-all": "^4.0.0"
}
}