-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.91 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "investec-ipb",
"version": "0.8.3",
"main": "bin/index.js",
"bin": {
"ipb": "./bin/index.js"
},
"type": "module",
"scripts": {
"build": "npm run clean && tsc && npm run copy-files",
"clean": "rimraf ./bin",
"copy-files": "cp -r ./templates/ ./bin/templates/ && cp -r ./assets/ ./bin/assets/ && cp instructions.txt ./bin/instructions.txt",
"test": "vitest",
"test:run": "vitest --run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\"",
"format": "biome format --write .",
"format:check": "biome format .",
"type-check": "tsc",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"ci": "npm run build && npm run type-check && npm run lint && npm run lint:md && npm run format:check && npm run test:run && npm audit",
"verify:ci": "npm run build && npm run test:run && npm run bundle",
"dev": "vitest",
"tapes": "./scripts/tapes.sh",
"docs": "npm run build && node bin/index.js docs",
"docs:source": "node --loader tsx src/cmds/docs.ts",
"prepublishOnly": "npm run build && npm run docs",
"bundle": "npm run build && node esbuild.config.js",
"bundle:minify": "npm run build && node esbuild.config.js --minify",
"pkg:build": "npm run bundle && pkg dist-bundle/index.cjs --config package.json --out-path dist --no-bytecode --public",
"pkg:macos": "npm run bundle && pkg dist-bundle/index.cjs --config package.json --targets node24-macos-x64,node24-macos-arm64 --out-path dist --no-bytecode --public",
"pkg:linux": "npm run bundle && pkg dist-bundle/index.cjs --config package.json --targets node24-linux-x64,node24-linux-arm64 --out-path dist --no-bytecode --public",
"pkg:windows": "npm run bundle && pkg dist-bundle/index.cjs --config package.json --targets node24-win-x64 --out-path dist --no-bytecode --public",
"pkg:all": "npm run bundle && pkg dist-bundle/index.cjs --config package.json --targets node24-macos-x64,node24-macos-arm64,node24-linux-x64,node24-linux-arm64,node24-win-x64 --out-path dist --no-bytecode --public",
"pkg:clean": "rimraf ./dist ./dist-bundle",
"prepare": "husky"
},
"keywords": [
"investec",
"card",
"emulator",
"programmable banking",
"open banking",
"banking"
],
"author": "Devin Pearson",
"license": "MIT",
"description": "A cli application to manage programmable banking cards",
"repository": {
"type": "git",
"url": "https://github.com/devinpearson/ipb.git"
},
"homepage": "https://github.com/devinpearson/ipb#readme",
"bugs": {
"url": "https://github.com/devinpearson/ipb/issues"
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.9.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"investec-card-api": "^0.2.1",
"investec-pb-api": "^0.3.10",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"openai": "^4.104.0",
"ora": "^9.0.0",
"programmable-card-code-emulator": "^2.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.3.3",
"@commander-js/extra-typings": "^14.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.0",
"@yao-pkg/pkg": "^6.10.1",
"esbuild": "^0.25.12",
"husky": "^9.1.7",
"markdownlint-cli2": "^0.22.0",
"rimraf": "^6.1.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"files": [
"bin"
],
"pkg": {
"scripts": [
"dist-bundle/index.cjs"
],
"assets": [
"dist-bundle/templates/**/*",
"dist-bundle/assets/**/*",
"dist-bundle/instructions.txt"
],
"outputPath": "dist",
"targets": [
"node24-macos-x64",
"node24-macos-arm64",
"node24-linux-x64",
"node24-linux-arm64",
"node24-win-x64"
]
}
}