-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 804 Bytes
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
{
"name": "theprototype-modules",
"version": "1.0.0",
"private": true,
"license": "MIT",
"description": "Optional/community modules for theprototype.app — one folder per module under modules/.",
"repository": {
"type": "git",
"url": "https://github.com/theprototype-app/modules.git"
},
"scripts": {
"pack": "node scripts/pack.cjs",
"new": "node scripts/new.cjs",
"test": "node tests/run.cjs",
"build:dungeon-realms": "esbuild modules/dungeon-realms/src/index.js --bundle --format=esm --outfile=modules/dungeon-realms/module.js",
"test:dungeon-realms": "node modules/dungeon-realms/test/run.mjs"
},
"devDependencies": {
"esbuild": "0.28.2",
"fflate": "^0.8.3",
"playwright": "^1.62.0"
},
"engines": {
"node": ">=24"
},
"allowScripts": {
"esbuild@0.28.2": true
}
}