-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "@ridit/lens",
"version": "0.1.8",
"description": "Know Your Codebase.",
"author": "Ridit Jangra <riditjangra09@gmail.com> (https://ridit.space)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ridit-jangra/Lens"
},
"main": "dist/index.mjs",
"bin": {
"lens": "./dist/index.mjs"
},
"scripts": {
"build": "bun build src/index.tsx --target node --outfile dist/index.mjs",
"postbuild": "node -e \"const fs=require('fs');const f='dist/index.mjs';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f,'utf8'))\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^14.0.3",
"figures": "^6.1.0",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"nanoid": "^5.1.6",
"react": "^19.2.4",
"react-devtools-core": "^7.0.1",
"sugar-high": "^0.9.5"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14"
},
"peerDependencies": {
"typescript": "^5"
}
}