-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.39 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@anarchitecture/madrigal",
"version": "0.1.0",
"description": "A config-driven, pluggable knowledge compiler inspired by Style Dictionary",
"license": "Apache-2.0",
"author": "Block, Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/block/madrigal.git"
},
"homepage": "https://github.com/block/madrigal#readme",
"bugs": {
"url": "https://github.com/block/madrigal/issues"
},
"keywords": [
"knowledge-compiler",
"knowledge-base",
"ai-agents",
"style-dictionary",
"rules",
"cli"
],
"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"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"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",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm pack",
"prepublishOnly": "pnpm build",
"prepare": "lefthook install"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.27.0",
"@modelcontextprotocol/sdk": ">=1.0.0",
"zod": ">=3.0.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
},
"@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": {
"@anthropic-ai/sdk": "^0.90.0",
"@biomejs/biome": "^2.4.10",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@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"
}
}