-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 895 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 895 Bytes
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
{
"name": "cli-owm",
"version": "0.0.2",
"description": "Render Wardley Maps from DSL text to SVG on the command line",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"bin": {
"cli-owm": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"bundle": "esbuild src/cli.ts --bundle --platform=node --target=node22 --outfile=sea-bundle.js",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.9",
"@types/node": "^20.0.0",
"typescript": "^5.5.0",
"esbuild": "^0.25.0",
"vitest": "^4.0.18"
},
"overrides": {
"rollup": ">=4.59.0"
},
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/monkeypants/cli-owm.git"
}
}