-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "@deanbucai/intent-compiler",
"version": "0.1.0",
"description": "Natural Language → Structured Intent IR → Any Output. The LLVM for vibe coding.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"intentc": "dist/cli.js",
"intentc-mcp": "dist/mcp-server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"compile": "tsx src/cli.ts",
"test": "tsx --test src/__tests__/*.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"llm",
"compiler",
"intent",
"ir",
"intermediate-representation",
"vibe-coding",
"code-generation",
"agent"
],
"license": "MIT",
"author": "Intent Compiler Contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/Deanbucai/intent-compiler.git"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.40.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"ajv": "^8.17.0",
"commander": "^12.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
}
}