-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@workadventure/map-starter-kit-core",
"version": "1.1.0",
"description": "Core app, HTML pages and static assets for the WorkAdventure Map Starter Kit. Update this package to get new UI and server features without touching your maps or config.",
"type": "module",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && node -e \"require('fs').copyFileSync('types/server.d.ts','dist/server.d.ts')\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/workadventure/map-starter-kit-core.git"
},
"keywords": [
"map",
"builder",
"kit",
"starter"
],
"author": "gregoire@workadventu.re",
"license": "MIT",
"bugs": {
"url": "https://github.com/workadventure/map-starter-kit-core/issues"
},
"homepage": "https://github.com/workadventure/map-starter-kit-core#readme",
"release": {
"branches": ["main", "master"]
},
"files": [
"dist",
"public",
"README.md"
],
"exports": {
".": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./dist/server.js": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
}
},
"dependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/mustache": "^4.2.6",
"@types/node": "^25.2.0",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"mustache": "^4.2.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-node": "^7.0.0",
"semantic-release": "^24.2.0"
}
}