-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
105 lines (105 loc) · 2.68 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "madwizard-packages",
"version": "9.0.7",
"description": "Turn Markdown into Wizards",
"source": "src/index.ts",
"main": "packages/madwizard/dist/index.js",
"type": "module",
"types": "packages/madwizard/dist/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "cross-env eslint . --ext workspaces/**/.js,.jsx,.ts,.tsx",
"watch": "cross-env tsc --build . --watch & npm run watch --workspaces --if-present",
"clean": "cross-env tsc --build . --clean && npm run clean --workspaces --if-present",
"build": "cross-env tsc --build . && npm run build --workspaces --if-present",
"test": "cross-env npm run test --workspaces --if-present",
"regen": "./packages/madwizard/bin/regen.sh",
"format": "cross-env prettier --write '**/*.{scss,css,html,js,json,md,ts,tsx}'",
"prepare": "cross-env husky install"
},
"workspaces": [
"packages/madwizard",
"packages/madwizard-cli-core",
"packages/madwizard-cli"
],
"keywords": [
"markdown",
"wizard",
"task graph",
"testing",
"documentation"
],
"author": "@starpit",
"license": "Apache-2.0",
"homepage": "https://github.com/guidebooks/madwizard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/guidebooks/madwizard"
},
"bugs": {
"url": "https://github.com/guidebooks/madwizard/issues"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-unused-vars": "error"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
},
"eslintIgnore": [
"packages/*/dist",
".#*",
"*~"
],
"lint-staged": {
"**/*.{scss,css,html,js,json,md,ts,tsx}": [
"prettier --write",
"git add"
],
"**/*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"prettier": {
"semi": false,
"printWidth": 120
},
"release-it": {
"npm": false,
"hooks": {
"after:bump": [
"npm run build"
]
},
"plugins": {
"@release-it-plugins/workspaces": true,
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
},
"@release-it/bumper": {
"out": "packages/madwizard/src/version.ts"
}
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"typedoc": "^0.24.1",
"typedoc-plugin-markdown": "^3.15.1",
"typescript": "^5.0.4",
"uvu": "^0.5.6"
}
}