-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.42 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
{
"name": "foundry",
"type": "commonjs",
"version": "0.0.3-beta.3",
"main": "./out/main/index.js",
"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",
"ai"
],
"files": [],
"repository": {
"url": "git+https://github.com/tinywaves/foundry.git",
"type": "git"
},
"sideEffects": false,
"scripts": {
"build": "npm run typecheck && electron-vite build",
"build:linux": "electron-vite build && electron-builder --linux",
"build:mac": "electron-vite build && electron-builder --mac",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"dev": "electron-vite dev",
"dev:watch": "electron-vite dev --watch",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint",
"lint-fix": "eslint --fix .",
"release": "bumpp",
"start": "electron-vite preview",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false"
},
"dependencies": {
"@astryxdesign/core": "^0.2.0",
"@astryxdesign/theme-neutral": "^0.2.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@stylexjs/stylex": "^0.19.0",
"electron-updater": "^6.3.9"
},
"devDependencies": {
"@astryxdesign/cli": "^0.2.0",
"@dhzh/eslint-config": "^2.4.2",
"@electron-toolkit/tsconfig": "^2.0.0",
"@stylexjs/unplugin": "^0.19.0",
"@types/node": "^22.19.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"bumpp": "^12.1.1",
"changelogithub": "^15.0.4",
"electron": "^39.2.6",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^10.6.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"typescript": "^5.9.3",
"vite": "^7.2.6"
}
}