-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 968 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 968 Bytes
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
{
"name": "intent-compiler",
"version": "0.1.0",
"description": "Compile natural language intent into optimized prompts for LLMs.",
"license": "MIT",
"type": "commonjs",
"main": "dist/index.js",
"bin": {
"intent": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "ts-node src/cli/index.ts",
"dev:web": "ts-node src/web/server.ts",
"start": "node dist/cli/index.js",
"start:web": "node dist/web/server.js",
"lint": "eslint . --ext .ts",
"format": "prettier -w .",
"test": "echo \"No tests yet\""
},
"dependencies": {
"commander": "^12.1.0",
"express": "^4.21.2",
"dotenv": "^16.4.7",
"undici": "^6.21.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}