forked from block/madrigal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.58 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
{
"name": "madrigal",
"version": "0.1.0",
"description": "A config-driven, pluggable knowledge compiler inspired by Style Dictionary",
"type": "module",
"packageManager": "pnpm@10.12.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"madrigal": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && cd src/dev/ui && npm run build",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput & cd src/dev/ui && npm run dev",
"dev:server": "node --watch-path=dist dist/cli.js dev",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"check": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"clean": "rm -rf dist",
"prepare": "lefthook install"
},
"engines": {
"node": ">=18"
},
"license": "Apache-2.0",
"peerDependencies": {
"@modelcontextprotocol/sdk": ">=1.0.0",
"zod": ">=3.0.0"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": true
},
"zod": {
"optional": true
}
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"hono": "^4.6.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@modelcontextprotocol/sdk": "^1.28.0",
"@types/node": "^20.11.0",
"lefthook": "^2.1.4",
"typescript": "^5.3.3",
"vitest": "^1.2.0",
"zod": "^4.3.6"
}
}