-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 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
{
"name": "@worldware/msg-cli",
"version": "0.2.2",
"description": "CLI for msg library",
"main": "dist/commands/init.cjs",
"module": "dist/commands/init.mjs",
"types": "dist/commands/init.d.ts",
"scripts": {
"test": "vitest run",
"build": "tsup",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worldware-studios/msg-cli.git"
},
"author": "Joel Sahleen",
"license": "MIT",
"bugs": {
"url": "https://github.com/worldware-studios/msg-cli/issues"
},
"homepage": "https://github.com/worldware-studios/msg-cli#readme",
"bin": {
"msg": "./bin/run.js"
},
"oclif": {
"bin": "msg",
"commands": "./dist/commands",
"dirname": "msg",
"topicSeparator": " "
},
"dependencies": {
"@oclif/core": "^3.21.2",
"@worldware/msg": "^0.7.0",
"fast-xml-parser": "^5.3.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.0.18",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"files": [
"dist",
"bin"
]
}