-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.53 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "base64-advanced-cli",
"version": "1.3.1",
"description": "Command line interface for advanced base 64 encoding/decoding",
"scripts": {
"dev": "tsc -w",
"test": "npx ts-node --esm test/test.ts",
"build": "npm i && npx rimraf dist && tsc && npx ts-node --esm scripts/build-package-json && cp readme.md LICENSE dist/",
"build:local": "npm uninstall -g base64-advanced-cli && npm run build && npm install -g .",
"make:prerelease": "npm run build:local && npm test",
"make:release": "npm run make:prerelease && npm publish"
},
"bin": {
"b64": "./dist/src/index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Acuao/base64-advanced-cli.git"
},
"bugs": {
"url": "https://github.com/Acuao/base64-advanced-cli/issues"
},
"homepage": "https://github.com/Acuao/base64-advanced-cli#readme",
"keywords": [
"base64",
"base",
"64",
"b64",
"encode",
"decode",
"data",
"file",
"cli",
"util",
"command",
"line",
"interface",
"encoder",
"decoder",
"tool",
"advanced",
"console"
],
"author": "Acuao",
"license": "MIT",
"devDependencies": {
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/figlet": "^1.5.5",
"@types/node": "^18.7.23",
"@types/update-notifier": "^6.0.1",
"base64-image-mime": "^1.0.2",
"chalk": "^5.1.2",
"commander": "^9.4.1",
"figlet": "^1.5.2",
"get-stdin": "^9.0.0",
"update-notifier": "^6.0.2"
}
}