-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathpackage.json
67 lines (67 loc) · 3.08 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
{
"name": "rpgjs",
"version": "4.0.0",
"engines": {
"node": ">=11.0.0"
},
"description": "RPG JS is a framework for creating RPGs and MMORPG",
"dependencies": {
"canvas": "^2.11.2",
"concurrently": "^7.6.0",
"tsc-esm-fix": "^2.20.14",
"vue": "^3.2.47"
},
"devDependencies": {
"axios": "^1.5.0",
"git-parse": "^3.0.1",
"jsdom": "^21.1.1",
"lerna": "^6.6.1",
"typescript": "^5.0.2",
"vitest": "^1.2.2"
},
"scripts": {
"postinstall": "lerna bootstrap --ci && npm run build:compiler && npm run build:types && npm run build:tiled && npm run build:common && npm run build:client && npm run build:database && npm run build:server && npm run build:testing && cd packages/client && cd ../../packages/plugins/agones/matchmaker && npm i",
"test": "RPGJS_TEST=1 vitest --config ./packages/compiler/src/test/vitest.config.ts && cd ./packages/compiler && npm test",
"lerna:publish": "lerna publish --ignore-prepublish --force-publish --no-private --no-push --no-git-tag-version",
"lerna:actions:publish": "lerna publish from-git --ignore-prepublish --force-publish --no-private --no-push --no-git-tag-version --yes",
"lerna:ls": "lerna ls",
"build": "concurrently -n build \"npm:build:*\" && npm run fix-esm",
"build:standalone": "cd packages/standalone && npm run build:browser",
"build:defaultGui": "cd packages/plugins/default-gui && npm run build:browser",
"build:common": "cd packages/common && npm run build",
"build:server": "cd packages/server && npm run build",
"build:client": "cd packages/client && npm run build",
"build:database": "cd packages/database && npm run build",
"build:testing": "cd packages/testing && npm run build",
"build:tiled": "cd packages/tiled && npm run build",
"build:types": "cd packages/types && npm run build",
"build:compiler": "cd packages/compiler && npm run build",
"build:agones-mm": "cd packages/plugins/agones/matchmaker && npm run build",
"watch:common": "cd packages/common && npm run watch",
"watch:client": "cd packages/client && npm run watch",
"watch:server": "cd packages/server && npm run watch",
"watch:testing": "cd packages/testing && npm run watch",
"watch:database": "cd packages/database && npm run watch",
"watch:tiled": "cd packages/tiled && npm run watch",
"watch:types": "cd packages/types && npm run watch",
"watch:compiler": "cd packages/compiler && npm run watch",
"watch:agones-mm": "cd packages/plugins/agones/matchmaker && npm run watch",
"dev:watch": "concurrently -n rpgjs \"npm:watch:*\"",
"dev": "concurrently -n rpgjs,sample \"npm:watch:*\" \"cd packages/sample && npm run dev\"",
"dev:doc": "cd docs && npm run dev",
"doc:build": "cd docs && npm run build",
"fix-esm": "tsc-esm-fix --target='packages/*/lib/**/*.js' --dirnameVar=false && tsc-esm-fix --target='packages/plugins/agones/matchmaker/lib/*.js'"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"rpg",
"mmorpg",
"framework"
],
"author": "Samuel Ronce",
"license": "MIT",
"type": "module"
}