-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.76 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.76 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@noormdev/main",
"version": "0.0.1",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"description": "An Ink CLI application",
"main": "dist/cli/index.js",
"bin": {
"noorm": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli/index.js",
"start:init": "node dist/cli/index.js init",
"test": "bun test --serial",
"test:watch": "bun test --serial --watch",
"test:coverage": "bun test --serial --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit -p tsconfig.test.json",
"clean": "rm -rf dist coverage",
"prepublishOnly": "bun run build",
"build:packages": "zx scripts/build.mjs",
"build:binary": "bun scripts/build-binary.mjs",
"changeset": "changeset",
"version": "changeset version",
"release": "zx scripts/build.mjs && changeset publish"
},
"keywords": [
"cli",
"ink",
"react",
"terminal"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=22.13",
"bun": ">=1.2"
},
"files": [
"dist"
],
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@logosdx/observer": "^2.5.0",
"@logosdx/react": "^3.0.0",
"@logosdx/utils": "^6.1.0",
"ansis": "^4.2.0",
"better-sqlite3": "^12.8.0",
"csv-parse": "^6.1.0",
"dayjs": "^1.11.20",
"eta": "^4.5.1",
"ink": "^6.8.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"json5": "^2.2.3",
"kysely": "^0.28.12",
"meow": "^14.1.0",
"node-machine-id": "^1.1.12",
"react": "^19.2.4",
"voca": "^1.4.1",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.57.7",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0",
"@types/pg": "^8.18.0",
"@types/react": "^19.2.14",
"@types/voca": "^1.4.6",
"dts-bundle-generator": "^9.5.1",
"eslint": "^10.0.3",
"eslint-plugin-unused-imports": "^4.4.1",
"ink-testing-library": "^4.0.0",
"mysql2": "^3.19.1",
"pg": "^8.20.0",
"react-devtools-core": "^7.0.1",
"tarn": "^3.0.2",
"tedious": "^19.2.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"zx": "^8.8.5"
}
}