-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@tiddlywiki/mws",
"description": "TiddlyWiki Multiple Wiki Server",
"private": false,
"version": "0.1.14",
"bin": {
"mws": "./mws.run.mjs"
},
"type": "module",
"repository": {
"url": "https://github.com/TiddlyWiki/MultiWikiServer"
},
"license": "BSD-3-Clause",
"author": "TiddlyWiki Community",
"exports": {
".": {
"types": "./dist/mws.d.ts",
"import": "./dist/mws.js"
}
},
"workspaces": [
"packages/*",
"prisma"
],
"files": [
"dist",
"editions/mws-docs",
"plugins",
"prisma",
"public",
"scripts.mjs",
"mws.run.mjs"
],
"engines": {
"node": ">=18"
},
"scripts": {
"install-android": "GYP_DEFINES=\"android_ndk_path=''\" npm install",
"docs": "node scripts/scripts.mjs docs",
"start": "node scripts/scripts.mjs start",
"certs": "(cd dev && bash localhost_certs.sh)",
"tsc": "TSCMWS=1 npx tsup",
"tsc2": "tsc -p tsconfig.json --noEmit",
"tsc-client": "cd packages/react-admin && npm run tsc",
"build": "tsup && npm run build:admin",
"build:admin": "node scripts/scripts.mjs client-build",
"build:client": "cd plugins/client && tsc",
"build:types": "PLUGINDTS=1 npx tsup",
"dev-quick-reset": "node scripts/scripts.mjs dev-quick-reset",
"env": "env",
"test": "node scripts/scripts.mjs test",
"prisma:generate": "node scripts/scripts.mjs prisma:generate",
"prisma:migrate": "node scripts/scripts.mjs prisma:migrate"
},
"dependencies": {
"@serenity-kit/opaque": "^0.8.4",
"@types/source-map-support": "^0.5.10",
"source-map-support": "^0.5.21",
"tiddlywiki": "^5.3.2"
},
"devDependencies": {
"@prisma/adapter-better-sqlite3": "7.2.0",
"@prisma/client": "7.2.0",
"@types/node": "^24.6.0",
"prettier": "^3.6.1",
"prisma": "7.2.0",
"prisma-json-schema-generator": "^5.1.5",
"prisma-json-types-generator": "^4.1.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"tiddlywiki": "^5.3.2"
}
}