-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 KB
/
package.json
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
{
"name": "apm-tool",
"description": "cli tool for ao package manager",
"repository": {
"type": "git",
"url": "git://github.com/ankushKun/apm-cli.git"
},
"version": "1.3.4",
"type": "module",
"maintainers": [
{
"name": "Ankush",
"email": "ankush4singh@gmail.com",
"url": "https://ankushKun.github.io"
}
],
"main": "./bin/index.js",
"bin": {
"apm": "./bin/index.js",
"apm-tool": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx -y @vercel/ncc build src/index.ts -o ./bin -m -t && chmod +x ./bin/index.js",
"start": "npm run build && node ./bin/index.js"
},
"keywords": [
"ao",
"arweave",
"apm",
"pacakge manager",
"BetterIDEa"
],
"author": "ankushKun",
"license": "MIT",
"dependencies": {
"@permaweb/aoconnect": "^0.0.58",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"inquirer": "^10.1.2",
"ora": "^8.0.1",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^22.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}