-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.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
{
"name": "@bonnard/cli",
"version": "0.3.14",
"type": "module",
"bin": {
"bon": "./dist/bin/bon.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown src/bin/bon.ts --format esm --out-dir dist/bin && vite build viewer && mv dist/index.html dist/viewer.html && cp -r src/templates dist/ && mkdir -p dist/docs/topics dist/docs/schemas && cp ./content/index.md dist/docs/_index.md && cp ./content/overview.md ./content/getting-started.md dist/docs/topics/ && cp ./content/modeling/*.md dist/docs/topics/ && cp ./content/dashboards/*.md dist/docs/topics/ && cp ./content/sdk/*.md dist/docs/topics/",
"dev": "tsdown src/bin/bon.ts --format esm --out-dir dist/bin --watch",
"test": "vitest run"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"@toon-format/toon": "^2.1.0",
"commander": "^12.0.0",
"open": "^11.0.0",
"picocolors": "^1.0.0",
"yaml": "^2.8.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@bonnard/react": "^0.4.5",
"@bonnard/sdk": "^0.4.3",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.1.0",
"buffer": "^6.0.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsdown": "^0.20.3",
"vite": "^7.3.0",
"vite-plugin-singlefile": "^2.3.0",
"vitest": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bonnard-data/bonnard-cli.git"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
}
}