forked from formio/uag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 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
{
"name": "@formio/uag",
"version": "1.10.1",
"description": "The Form.io Universal Agent Gateway (UAG).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=22.0.0"
},
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib",
"build:ts": "npx tsc",
"build:copy-templates": "mkdir -p lib/templates && cp src/templates/*.md lib/templates/",
"build": "npm run clean && npm run build:ts && npm run build:copy-templates",
"build:docker": "docker build -t formio/uag$(node -p \"require('./package.json').version.includes('-rc.') ? ':rc' : ''\") --platform=linux/amd64 .",
"test": "TS_NODE_PROJECT=tsconfig.test.json mocha --no-node-snapshot",
"dev": "tsx --no-node-snapshot index.js",
"start": "node --no-node-snapshot index.js",
"claude": "node --no-node-snapshot ./integrations/claude/index.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@formio/appserver": "^2.12.1",
"@formio/core": "2.5.1-dev.291.6557e4e",
"@modelcontextprotocol/sdk": "1.27.0",
"cors": "^2.8.6",
"debug": "^4.4.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.23",
"node-cache": "^5.1.2",
"node-html-markdown": "^2.0.0",
"zod": "^4.3.6"
},
"resolutions": {
"tar": ">=7.5.7",
"minimatch": ">=10.2.1",
"brace-expansion": ">=5.0.1",
"diff": ">=8.0.3"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.23",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.0",
"@types/supertest": "^6.0.3",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"supertest": "^7.2.2",
"terser": "^5.46.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}