-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.65 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
{
"name": "termnotes-cli",
"version": "0.0.7",
"description": "Zero-config daily notes and tasks CLI for your terminal",
"main": "dist/index.js",
"bin": {
"tn": "bin/tn",
"termnotes": "bin/tn"
},
"type": "module",
"scripts": {
"build": "rm -rf dist && rolldown src/index.ts --dir dist --minify",
"dev": "bun src/index.ts",
"fmt": "ultracite fix",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:cli": "bun run src/index.ts --help"
},
"engines": {
"bun": ">=1.2.22"
},
"files": [
"bin/",
"dist/",
"README.md",
"package.json",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chris-tse/termnotes.git"
},
"homepage": "https://github.com/chris-tse/termnotes",
"bugs": {
"url": "https://github.com/chris-tse/termnotes/issues"
},
"keywords": [
"cli",
"notes",
"tasks",
"terminal",
"productivity",
"markdown"
],
"author": "Chris Tse",
"license": "GPL-3.0",
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@effect/experimental": "^0.56.0",
"@effect/language-service": "^0.36.0",
"@effect/vitest": "^0.25.1",
"@types/bun": "^1.2.22",
"@types/ws": "^8.18.1",
"rolldown": "^1.0.0-beta.34",
"ultracite": "5.4.5",
"vitest": "^3.2.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@effect/cli": "^0.70.0",
"@effect/cluster": "^0.49.3",
"@effect/platform": "^0.92.1",
"@effect/platform-bun": "^0.80.0",
"@effect/rpc": "^0.70.0",
"@effect/sql": "^0.45.0",
"effect": "^3.18.3"
}
}