-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "visualbeans",
"version": "0.1.0",
"private": true,
"description": "Professional document generation MCP server — MD to DOCX/PDF with templates and legal design",
"author": "BeansTech <dev@beanstech.com.br>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/beanstechbr/visualbeans"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:unit": "turbo test:unit",
"test:integration": "turbo test:integration",
"test:stress": "k6 run tests/stress/load.js",
"test:visual": "playwright test --config tests/visual-regression/playwright.config.ts",
"clean": "turbo clean",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^22.0.0",
"prettier": "^3.4.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
}
}