-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "openmemo-dev",
"version": "0.1.0",
"private": true,
"description": "OpenTUI-based memo app inspired by mattn/memo (development root)",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/arkjun/openmemo.git"
},
"author": "arkjun",
"license": "MIT",
"keywords": [
"memo",
"cli",
"terminal",
"tui",
"note",
"markdown"
],
"homepage": "https://github.com/arkjun/openmemo#readme",
"bugs": {
"url": "https://github.com/arkjun/openmemo/issues"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:binaries": "bun run scripts/build-binaries.ts",
"dev": "bun src/cli.ts",
"start": "bun dist/cli.js",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"dependencies": {
"@opentui/core": "^0.1.75"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "latest",
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.4.5",
"vitest": "^4.0.18"
}
}