-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.05 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
{
"name": "@dhzh/foundry",
"type": "module",
"version": "0.0.2",
"packageManager": "pnpm@11.9.0",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.9.0",
"onFail": "download"
},
"runtime": {
"name": "node",
"version": "^24.18.0",
"onFail": "download"
}
},
"description": "An AI-native local developer runtime for tools, skills, agents, and workflows.",
"author": {
"name": "tinywaves",
"email": "dhzhme@gmail.com"
},
"license": "Apache-2.0",
"homepage": "https://github.com/tinywaves/foundry",
"keywords": [
"agent",
"cli",
"ai"
],
"bin": {
"foundry": "./bin/index.js"
},
"files": [
"bin",
"dist"
],
"repository": {
"url": "git+https://github.com/tinywaves/foundry.git",
"type": "git"
},
"sideEffects": false,
"scripts": {
"build": "pnpm run build:cli && pnpm run build:web",
"build:cli": "tsdown",
"build:web": "pnpm run --filter web build",
"dev:cli": "tsx watch --clear-screen=true src/cli/index.ts",
"dev:web": "pnpm run --filter web dev",
"lint": "eslint",
"lint-fix": "eslint --fix .",
"prepack": "pnpm run build",
"prepare": "husky",
"preview:web": "pnpm run --filter web preview",
"release": "bumpp",
"release:publish": "pnpm release && pnpm publish --access public",
"test": "vitest run",
"test:coverage": "pnpm run test --coverage",
"test:dev": "vitest"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@dhzh/eslint-config": "^2.1.1",
"@types/node": "catalog:",
"@vitest/coverage-v8": "^4.1.9",
"bumpp": "^11.1.0",
"changelogithub": "^14.0.0",
"eslint": "^10.5.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"tailwindcss": "catalog:",
"tsdown": "^0.22.2",
"tsx": "^4.22.4",
"typescript": "catalog:",
"vitest": "^4.1.9"
},
"dependencies": {
"@hono/node-server": "^2.0.8",
"cac": "^7.0.0",
"hono": "^4.12.27",
"terminal-link": "^5.0.0"
}
}