-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.94 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.94 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "rpgjs",
"version": "5.0.0-beta.1",
"scripts": {
"build": "tsx bin/build.ts",
"dev": "tsx bin/dev.ts",
"clean": "tsx bin/clean.ts",
"docs:extract-api": "tsx bin/extract-jsdoc.ts",
"docs:client-api": "tsx bin/extract-jsdoc.ts extract --package @rpgjs/client-api --entry packages/client/src --output docs/.generated/client-api.json && tsx bin/extract-jsdoc.ts render --input docs/.generated/client-api.json --config docs/api/client.config.json --output docs/api/client",
"docs:map-api": "tsx bin/extract-jsdoc.ts extract --package @rpgjs/map-api --entry packages/server/src/rooms,packages/common/src/rooms --output docs/.generated/map-api.json && tsx bin/extract-jsdoc.ts render --input docs/.generated/map-api.json --config docs/api/map.config.json --output docs/api/map",
"docs:player-api": "tsx bin/extract-jsdoc.ts extract --package @rpgjs/server --entry packages/server/src --output docs/.generated/server-api.json && tsx bin/extract-jsdoc.ts render --input docs/.generated/server-api.json --config docs/api/player.config.json --output docs/api/player",
"release": "bumpp package.json packages/*/package.json --all",
"rpgjs:version": "tsx bin/version.ts",
"rpgjs:publish": "pnpm -r publish --publish-branch v5 --no-git-checks --access public --force",
"test": "vitest"
},
"author": "Samuel Ronce",
"license": "MIT",
"description": "RPGJS is a framework for creating RPG/MMORPG games",
"dependencies": {
"bumpp": "^10.3.2",
"execa": "^9.6.1",
"pnpm": "^10.25.0",
"tsx": "^4.21.0",
"wait-on": "^9.0.3"
},
"keywords": [
"rpg",
"game",
"engine",
"javascript",
"typescript"
],
"packageManager": "[email protected]",
"private": true,
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.0.0",
"jsdom": "^27.3.0",
"ts-morph": "^27.0.2",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15"
}
}