-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 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
{
"name": "ownpilot-monorepo",
"version": "0.3.2",
"private": true,
"description": "OwnPilot - Privacy-first personal AI assistant platform",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ownpilot/ownpilot.git"
},
"author": "OwnPilot",
"license": "MIT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"test:watch": "turbo test:watch",
"test:coverage": "turbo test:coverage",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"typecheck": "turbo typecheck",
"typecheck:ci": "turbo typecheck:ci",
"clean": "turbo clean && rimraf node_modules",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky || true"
},
"devDependencies": {
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"turbo": "^2.9.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"node-pty"
],
"overrides": {
"@isaacs/brace-expansion": ">=5.0.1",
"esbuild": ">=0.25.0",
"undici": ">=7.24.0",
"minimatch": ">=10.2.3",
"flatted": ">=3.4.0",
"dompurify": ">=3.3.3",
"file-type": ">=21.3.3",
"express-rate-limit": ">=8.3.0",
"lodash": ">=4.18.0",
"path-to-regexp": ">=8.4.0",
"picomatch": ">=4.0.4",
"music-metadata": ">=11.12.3",
"brace-expansion": ">=5.0.5",
"nodemailer": ">=8.0.4"
}
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
}
}