-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.92 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
{
"$schema": "https://json.schemastore.org/package",
"name": "processace",
"version": "1.2.0",
"description": "AI-powered process discovery and documentation engine – from recordings and docs to BPMN 2.0, SIPOC and RACI. Self-hosted with bring-your-own LLM.",
"author": "jgleiser",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git+https://github.com/jgleiser/ProcessAce.git"
},
"homepage": "https://github.com/jgleiser/ProcessAce#readme",
"keywords": [
"bpmn",
"process-mining",
"sipoc",
"raci",
"llm",
"ai",
"process-documentation"
],
"scripts": {
"dev": "node ./src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"test": "node --test --test-force-exit tests/unit/**/*.test.js tests/integration/**/*.test.js",
"test:unit": "node --test tests/unit/**/*.test.js",
"test:int": "node --test --test-force-exit tests/integration/**/*.test.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@google/genai": "^1.45.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.6.2",
"bpmn-auto-layout": "^1.3.0",
"bullmq": "^5.71.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"fluent-ffmpeg": "^2.1.3",
"helmet": "^8.1.0",
"html-to-docx": "^1.8.0",
"ioredis": "^5.10.0",
"jsonwebtoken": "^9.0.3",
"marked": "^17.0.4",
"multer": "^2.1.1",
"openai": "^6.27.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sanitize-html": "^2.17.1",
"uuid": "^13.0.0",
"xmlbuilder2": "^4.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"form-data": "^4.0.5",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2"
}
}