-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.73 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.73 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
{
"name": "@howells/sift",
"version": "0.2.0",
"description": "Sift through your email. Surface what matters.",
"author": "Daniel Howells",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/howells/sift.git"
},
"bugs": {
"url": "https://github.com/howells/sift/issues"
},
"homepage": "https://github.com/howells/sift#readme",
"type": "module",
"bin": {
"sift": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"keywords": [
"email",
"gmail",
"cli",
"tui",
"inbox",
"productivity",
"ai"
],
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"dev": "tsx src/index.tsx",
"test": "vitest",
"test:run": "vitest run",
"lint": "howells-lint src package.json pnpm-workspace.yaml tsconfig.json biome.json",
"lint:fix": "howells-format src package.json pnpm-workspace.yaml tsconfig.json biome.json",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"knip": "knip"
},
"devDependencies": {
"@howells/envelope": "^0.2.1",
"@howells/ledger": "file:../ledger",
"@howells/lint": "0.1.1",
"@howells/typescript-config": "0.1.0",
"@manypkg/cli": "^0.25.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"better-sqlite3": "^12.8.0",
"husky": "9.1.7",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"knip": "^5.83.1",
"lint-staged": "^16.4.0",
"open": "^10.1.0",
"react": "^19.2.4",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.2",
"zod": "^4.3.6"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc,css}": "howells-format"
}
}