-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "manifold",
"version": "2.0.0",
"private": true,
"description": "Constraint-first development framework",
"type": "module",
"scripts": {
"prepare": "husky",
"build:commands": "bun install/lib/build-commands.ts",
"build:parallel-bundle": "bun build install/lib/parallel/bundle-entry.ts --outfile install/lib/parallel/parallel.bundle.js --target node",
"sync:plugin": "bun scripts/sync-plugin.ts",
"build:all": "bun run build:commands && bun run build:parallel-bundle && bun run sync:plugin"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"husky": "^9.0.0",
"patch-package": "^8.0.1"
},
"workspaces": [
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/dhanesh/manifold"
},
"license": "MIT",
"dependencies": {
"@types/mdast": "^4.0.4",
"beautiful-mermaid": "^0.1.3",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"yaml": "^2.8.2",
"zod": "3",
"zod-to-json-schema": "^3.25.1"
}
}