forked from accomplish-ai/accomplish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.21 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.21 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
{
"name": "accomplish",
"version": "0.1.0",
"private": true,
"description": "The open source AI coworker that lives on your desktop",
"author": "Accomplish Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/accomplish-ai/accomplish.git"
},
"scripts": {
"predev": "node scripts/predev.cjs",
"dev": "node scripts/dev.cjs",
"predev:check": "node scripts/predev.cjs",
"dev:check": "node scripts/dev.cjs --check",
"predev:clean": "node scripts/predev.cjs",
"dev:clean": "node scripts/dev.cjs --clean",
"predev:clean:check": "node scripts/predev.cjs",
"dev:clean:check": "node scripts/dev.cjs --clean --check",
"dev:kill": "node scripts/dev-kill.cjs",
"dev:remote": "node scripts/dev-remote.cjs",
"postinstall": "node scripts/save-lockfile-hash.cjs",
"build": "pnpm -r --workspace-concurrency=1 build",
"build:desktop": "pnpm -F @accomplish/desktop build",
"dev:web": "pnpm -F @accomplish/web dev",
"build:web": "pnpm -F @accomplish/web build",
"test:web": "pnpm -F @accomplish/web test",
"test:web:unit": "pnpm -F @accomplish/web test:unit",
"test:web:integration": "pnpm -F @accomplish/web test:integration",
"lint": "pnpm -r --parallel run typecheck && eslint .",
"typecheck": "pnpm -r --parallel run typecheck",
"lint:eslint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "pnpm -r clean && rm -rf node_modules",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0",
"pnpm": {
"overrides": {
"fast-xml-parser": ">=5.3.4"
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript-eslint": "^8.55.0",
"wait-on": "^9.0.4"
}
}