-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"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",
"lint": "tsc",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"check-format": "prettier --check .",
"ci": "npm run build && npm run check-format && npm run lint && npm run test && npm audit",
"dev": "vitest",
"format": "prettier --write .",
"tapes": "./scripts/tapes.sh"
},
"keywords": [
"investec",
"card",
"emulator",
"programmable banking",
"open banking",
"banking"
],
"author": "Devin Pearson",
"license": "MIT",
"description": "A cli application to manage programmable banking cards",
"dependencies": {
"@inquirer/prompts": "^7.5.3",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"dotenv": "^16.3.1",
"investec-card-api": "^0.2.0",
"investec-pb-api": "^0.3.6",
"node-fetch": "^3.3.2",
"openai": "^4.96.0",
"ora": "^8.2.0",
"programmable-card-code-emulator": "^1.4.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@commander-js/extra-typings": "^13.1.0",
"@types/node": "^22.12.0",
"prettier": "3.0.3",
"rimraf": "^6.0.1",
"vitest": "^3.1.1"
},
"files": [
"bin"
]
}