-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.24 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.24 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
83
84
85
{
"name": "lifeos-monorepo",
"private": true,
"version": "0.3.0",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"prepare": "husky install .husky",
"lifeos": "pnpm --filter @lifeos/cli exec tsx src/index.ts",
"build:modules": "tsx scripts/build-modules.ts",
"validate": "pnpm run build:modules && pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm run test",
"test": "tsx scripts/test-runner-entry.ts",
"test:household-identity": "pnpm --filter @lifeos/household-identity-module run test",
"test:voice-capture": "pnpm --filter @lifeos/household-capture-router-module run test:tracing",
"test:household-mvp": "pnpm run test:household-tracing",
"test:household-tracing": "pnpm --filter @lifeos/household-chores-module run test:tracing && pnpm --filter @lifeos/household-capture-router-module run test:tracing && pnpm --filter @lifeos/household-identity-module run test:tracing && cross-env NODE_ENV=test pnpm --dir services/dashboard exec tsx --test --test-name-pattern \"POST /api/households/:id/reminders publishes automation failure|POST /api/households/:id/reminders traces automation failure\" src/routes/household.test.ts",
"test:graph": "pnpm --filter @lifeos/life-graph run test",
"test:loader": "pnpm --filter @lifeos/module-loader run test",
"lint": "eslint \"packages/**/*.{ts,tsx}\" \"modules/**/*.{ts,tsx}\" \"services/**/*.{ts,tsx}\" \"apps/**/*.{ts,tsx}\" && tsx scripts/ruff-task.ts check",
"format": "prettier --write . && tsx scripts/ruff-task.ts format",
"format:check": "prettier --check . && tsx scripts/ruff-task.ts format-check",
"typecheck": "tsc --build tsconfig.packages.json",
"scaffold": "tsx scripts/scaffold.ts",
"changeset": "changeset",
"release:status": "changeset status --verbose",
"release:version": "changeset version",
"test:core-loop": "tsx scripts/test-core-loop.ts"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"modules/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"services/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"apps/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"packages/**/*.py": [
"ruff format",
"ruff check --fix"
],
"**/*.{json,yaml,yml,md}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^4.1.2",
"cross-env": "^10.1.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"optionalDependencies": {
"@rolldown/binding-win32-x64-msvc": "1.0.0-rc.15"
},
"pnpm": {
"overrides": {
"@lifeos/mobile>react": "18.3.1",
"@lifeos/mobile>react-dom": "18.3.1",
"@lifeos/mobile>react-native": "0.76.9"
}
}
}