amina 3.3.0
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.js +2430 -0
- package/package.json +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "amina",
|
|
3
|
+
"version": "3.3.0",
|
|
4
|
+
"description": "Standalone CLI for checking the latest Amina release and showing upgrade instructions",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "CC-BY-4.0",
|
|
7
|
+
"homepage": "https://github.com/iamvikshan/amina#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/iamvikshan/amina.git",
|
|
11
|
+
"directory": "cli"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/iamvikshan/amina/issues/new/choose"
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"amina": "./dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"registry": "https://registry.npmjs.org/"
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20",
|
|
27
|
+
"bun": ">=1.3.8"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "bun build src/index.ts --outdir dist --target node --entry-naming index.js",
|
|
31
|
+
"postbuild": "node -e \"const f=require('fs'),p='dist/index.js',c=f.readFileSync(p,'utf8');if(!c.startsWith('#!'))f.writeFileSync(p,'#!/usr/bin/env node\\n'+c);f.chmodSync(p,0o755)\"",
|
|
32
|
+
"prepublishOnly": "bun run build && bun run postbuild",
|
|
33
|
+
"check": "bunx tsc --project tsconfig.json --noEmit",
|
|
34
|
+
"test": "bun test tests/"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@clack/prompts": "^1.1.0"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/node": "^25.5.0"
|
|
41
|
+
}
|
|
42
|
+
}
|