-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.66 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.66 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
{
"name": "agentvm",
"version": "0.0.1",
"description": "AgentVM - AI Agent Virtual Machine",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*",
"storybook",
"bdd"
],
"scripts": {
"build": "turbo build --filter='./packages/*' --filter='./apps/*'",
"dev": "turbo dev --filter='./packages/*'",
"dev:desktop": "cd apps/desktop && bun run dev",
"dist:desktop": "cd apps/desktop && bun run dist",
"lint": "turbo lint --filter='./packages/*' --filter='./apps/*'",
"typecheck": "turbo typecheck --filter='./packages/*' --filter='./apps/*'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "turbo test --filter='./packages/*'",
"test:bdd": "cd bdd && bun run test",
"clean": "turbo clean && rm -rf node_modules",
"prepare": "lefthook install || true",
"version": "changeset version",
"release": "changeset publish"
},
"author": "Deepractice",
"license": "AGPL-3.0-or-later",
"packageManager": "bun@1.3.5",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.37.0",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"bun-types": "1.3.5",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"lefthook": "^1.13.6",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.3.0"
},
"dependencies": {
"resourcexjs": "^1.6.0"
}
}