-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "fables",
"version": "2.0.0",
"private": true,
"description": "A personal Knowledge OS fused with an interactive fiction engine. Your notes are the world; your stories run on a compiler you own.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "pnpm -r --parallel --stream run dev",
"build": "pnpm -r run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm -r run typecheck",
"doctor": "node scripts/doctor.mjs",
"changelog": "tsx scripts/gen-changelog.mjs",
"seed:demo": "pnpm --filter @fables/server seed:demo",
"start": "node apps/server/dist/server.js",
"upgrade-fables": "node scripts/upgrade-fables.mjs",
"test:coverage": "vitest run --coverage",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@types/libsodium-wrappers-sumo": "^0.8.2",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^9.39.0",
"lint-staged": "^17.0.7",
"prettier": "^3.6.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.0",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{ts,tsx,mjs}": "eslint --fix",
"*.{ts,tsx,mjs,css,md,json}": "prettier --write"
},
"dependencies": {
"libsodium-wrappers-sumo": "^0.8.4"
}
}