-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.45 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": "pico-accountancy",
"description": "Accountancy script for very simple cases",
"version": "0.3.0",
"author": {
"name": "Olivier Huin",
"url": "https://github.com/olih"
},
"keywords": [
"CLI",
"Accountancy"
],
"license": "MIT",
"homepage": "https://github.com/flarebyte/pico-accountancy",
"repository": {
"type": "git",
"url": "https://github.com/flarebyte/pico-accountancy.git"
},
"bugs": "https://github.com/flarebyte/pico-accountancy/issues",
"bin": {
"pico-accountancy": "dist/src/cli.mjs"
},
"type": "module",
"exports": {
".": {
"import": "./dist/src/cli.mjs",
"default": "./dist/src/cli.mjs",
"types": "./dist/src"
},
"./package.json": {
"default": "./package.json"
}
},
"main": "./dist/src/index.mjs",
"files": [
"dist/src",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc --outDir dist",
"test": "node --test --loader ts-node/esm test/*.test.ts",
"cli": "node --loader ts-node/esm src/cli.mts",
"spec": "node --loader ts-node/esm .baldrick-zest.ts"
},
"dependencies": {
"commander": "^10.0.0",
"fs-jetpack": "^5.1.0",
"moment": "^2.29.4",
"zod": "^3.20.6"
},
"devDependencies": {
"@types/node": "^18.14.0",
"baldrick-dev-ts": "^0.17.0",
"baldrick-zest-engine": "^0.7.0",
"baldrick-zest-mess": "^0.16.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}