-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
81 lines (81 loc) · 1.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "transity",
"description": "Keep track of your 💵, 🕘, 🐖, 🐄, 🍻 or anything else.",
"version": "0.8.0",
"main": "output/Main/index.js",
"type": "module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"bin": {
"transity": "index.js"
},
"scripts": {
"prepublishOnly": "make test && make bundle"
},
"directories": {
"test": "tests"
},
"files": [
"index.js",
"/scripts",
"!.DS_Store"
],
"keywords": [
"accounting",
"cli",
"command-line-tool",
"ledger",
"money",
"plaintext-accounting",
"purescript",
"tui"
],
"author": "Adrian Sieber",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/feramhq/transity.git"
},
"dependencies": {
"@eslint/js": "^9.16.0",
"@swc/helpers": "^0.5.15",
"@types/eslint__js": "^8.42.3",
"archiver": "^7.0.1",
"big-integer": "^1.6.52",
"chrono-node": "^2.7.7",
"csvnorm": "^1.1.0",
"js-yaml": "^4.1.0"
},
"optionalDependencies": {
"converter": "0.0.5",
"inquirer": "^12.1.0",
"tempy": "^3.1.0"
},
"devDependencies": {
"@highlightjs/cdn-assets": "^11.10.0",
"assert": "^2.1.0",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"eslint-config-javascript": "^3.0.0",
"events": "^3.3.0",
"highlight.js": "^11.10.0",
"markdown-toc": "^1.2.0",
"parcel": "^2.13.2",
"process": "^0.11.10",
"purescript": "^0.15.15",
"purs-tidy": "^0.11.0",
"spago": "^0.93.32",
"util": "^0.12.5"
},
"targets": {
"docs": {
"distDir": "docs"
},
"docs-dev": {
"distDir": "docs-dev"
},
"library": {
"distDir": "."
}
}
}