@ridit/lens 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +52222 -0
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ridit/lens",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Know Your Codebase.",
|
|
5
5
|
"author": "Ridit Jangra <riditjangra09@gmail.com> (https://ridit.space)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,16 +8,17 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/ridit-jangra/Lens"
|
|
10
10
|
},
|
|
11
|
-
"main": "dist/index.
|
|
11
|
+
"main": "dist/index.mjs",
|
|
12
12
|
"bin": {
|
|
13
|
-
"lens": "./dist/index.
|
|
13
|
+
"lens": "./dist/index.mjs"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "bun build src/index.tsx --target node --outfile dist/index.
|
|
17
|
-
"postbuild": "node -e \"const fs=require('fs');const f='dist/index.
|
|
16
|
+
"build": "bun build src/index.tsx --target node --outfile dist/index.mjs",
|
|
17
|
+
"postbuild": "node -e \"const fs=require('fs');const f='dist/index.mjs';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f,'utf8'))\"",
|
|
18
18
|
"prepublishOnly": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
+
"@ridit/lens": "^0.1.5",
|
|
21
22
|
"chalk": "^5.6.2",
|
|
22
23
|
"commander": "^14.0.3",
|
|
23
24
|
"figures": "^6.1.0",
|