-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.6 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
{
"name": "splitwise-cli",
"version": "1.2.0",
"description": "A CLI client for the Splitwise API",
"main": "dist/index.js",
"bin": {
"splitwise-cli": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"prepare:skills": "node scripts/copy-skills.mjs && node scripts/sync-skill-versions.mjs --dir dist/skills",
"build:package": "npm run build && npm run prepare:skills",
"prepack": "npm run build:package",
"version": "node scripts/sync-skill-versions.mjs",
"release": "npm publish",
"start": "node dist/index.js",
"test": "tsx --test tests/**/*.test.ts"
},
"keywords": [
"splitwise",
"cli",
"finance",
"expenses"
],
"author": "Michael Schnyder",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/michaelschnyder/splitwise-cli"
},
"bugs": {
"url": "https://github.com/michaelschnyder/splitwise-cli/issues"
},
"homepage": "https://github.com/michaelschnyder/splitwise-cli#readme",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0",
"consola": "^3.4.2",
"figlet": "^1.11.0",
"js-yaml": "^4.2.0",
"prompts": "^2.4.2",
"splitwise": "^2.0.0",
"typescript": "^6.0.3"
},
"overrides": {
"commander": "^15.0.0"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.9.3",
"@types/prompts": "^2.4.9",
"tsx": "^4.22.4"
}
}