-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.49 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
{
"name": "agpwiki",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"generate-locales": "tsx src/scripts/generate-language-options.ts",
"missing-translations": "node --import tsx src/scripts/find-missing-translations.ts",
"dump-public-data": "node --import tsx src/scripts/dump-public-data.ts",
"build": "tsc -p tsconfig.build.json",
"postbuild": "node util/copy-assets.mjs",
"start": "node dist/src/index.js",
"mcp": "tsx src/mcp/stdio.ts",
"mcp-http": "tsx src/mcp/http.ts",
"create-user": "node --import tsx src/scripts/create-user.ts",
"reset-password": "node --import tsx src/scripts/reset-password.ts",
"create-token": "node --import tsx src/scripts/create-token.ts",
"process-notifications": "node dist/src/scripts/process-notifications.js",
"dev:notifications": "tsx src/scripts/process-notifications.ts",
"grant-role": "node --import tsx src/scripts/grant-role.ts",
"revoke-role": "node --import tsx src/scripts/revoke-role.ts",
"list-roles": "node --import tsx src/scripts/list-roles.ts",
"generate-altcha-key": "node --import tsx src/scripts/generate-altcha-key.ts",
"test": "NODE_ENV=test node --import tsx --test test/**/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "biome check src locales util types",
"lint:fix": "biome check src locales util types --fix"
},
"dependencies": {
"@citeproc-rs/wasm": "^0.2.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"altcha-lib": "^1.4.1",
"cldr": "^8.0.0",
"config": "^4.1.1",
"cookie-parser": "^1.4.7",
"debug": "^4.4.3",
"diff": "^7.0.0",
"entities": "^7.0.0",
"express": "^5.2.1",
"file-type": "^21.0.0",
"handlebars-i18n": "^1.10.2",
"hbs": "^4.2.0",
"i18next": "^25.7.4",
"i18next-fs-backend": "^2.6.1",
"i18next-http-middleware": "^3.9.2",
"is-uuid": "^1.0.2",
"json5": "^2.2.3",
"markdown-it": "^14.1.0",
"pg": "^8.17.0",
"rev-dal": "github:permacommons/rev-dal#main",
"striptags": "^3.2.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/cldr": "^7.1.4",
"@types/config": "^3.3.5",
"@types/cookie-parser": "^1.4.10",
"@types/debug": "^4.1.12",
"@types/diff": "^7.0.2",
"@types/express": "^5.0.6",
"@types/is-uuid": "^1.0.2",
"@types/node": "^25.0.8",
"@types/pg": "^8.15.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}