-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 963 Bytes
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
{
"name": "oh-my-singularity",
"version": "0.0.9",
"module": "src/index.ts",
"type": "module",
"license": "GPL-3.0",
"bin": {
"oms": "src/index.ts"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --hot src/index.ts",
"build": "tsc -p tsconfig.json --noEmit",
"test": "bun test",
"perf:smoke": "bun test src/perf/perf-smoke.test.ts",
"check": "biome check src/ && bun run build",
"lint": "biome lint src/",
"fmt": "biome format --write src/",
"fix": "biome check --fix --unsafe src/"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "^1.3.9",
"@types/node": "^22",
"knip": "^5.83.1",
"typescript": "^5.7.0"
},
"dependencies": {
"@oh-my-pi/pi-natives": "latest",
"@xterm/headless": "^6.0.0",
"bun-pty": "^0.4.8",
"marked": "^17.0.2",
"terminal-kit": "^3.1.2",
"winston": "^3.18.1",
"winston-daily-rotate-file": "^5.0.0"
}
}