-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.28 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
{
"name": "@zanozbot/8d-tools",
"version": "1.0.2",
"type": "module",
"description": "A command-line tool for generating Eight Disciplines (8D) problem-solving reports from customizable templates.",
"scripts": {
"build": "npm run clean && vite build",
"test": "vitest run",
"test:watch": "vitest",
"types:check": "tsc --noEmit",
"clean": "rm -rf dist",
"dev": "npm run build && node dist/main.js",
"lint": "echo 'Linting not configured yet'",
"format": "echo 'Formatting not configured yet'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zanozbot/8d-tools.git"
},
"bin": {
"8d": "dist/main.js"
},
"keywords": [
"8d",
"eight",
"disciplines",
"problem",
"solving",
"root",
"cause",
"analysis",
"quality",
"cli",
"markdown",
"generator",
"documentation",
"report"
],
"author": "Žan Ožbot",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/zanozbot/8d-tools/issues"
},
"homepage": "https://github.com/zanozbot/8d-tools#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"fs-extra": "^11.3.0"
}
}