-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.48 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.48 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@versatiles/release-tool",
"version": "2.7.5",
"description": "VersaTiles release and documentation tools",
"bin": {
"vrt": "./dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "npm run build-node && npm run doc",
"prepare": "husky",
"build-node": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/index.js",
"check": "npm run lint && npm run typecheck && npm run build && npm run test && npm run format:check",
"dev": "tsx src/index.ts",
"doc": "npm run doc-command && npm run doc-graph",
"doc-command": "tsx src/index.ts doc-command vrt | tsx src/index.ts doc-insert README.md '# Command'",
"doc-graph": "tsx src/index.ts deps-graph | tsx src/index.ts doc-insert README.md '## Dependency Graph'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --color",
"prepack": "npm run build",
"release": "tsx src/index.ts release-npm",
"typecheck": "tsc --noEmit",
"test-coverage": "vitest --run --coverage",
"test": "vitest --run",
"upgrade": "tsx src/index.ts deps-upgrade"
},
"author": "Michael Kreil <versatiles@michael-kreil.de>",
"license": "Unlicense",
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/versatiles-org/node-release-tool.git"
},
"homepage": "https://github.com/versatiles-org/node-release-tool",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@schemastore/package": "^1.0.2",
"@types/mdast": "^4.0.4",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
},
"dependencies": {
"@inquirer/select": "^5.1.2",
"commander": "^14.0.3",
"dependency-cruiser": "^17.3.10",
"mdast-util-to-markdown": "^2.1.2",
"npm-check-updates": "^20.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"typedoc": "^0.28.18",
"typedoc-github-theme": "^0.4.0",
"typedoc-github-wiki-theme": "^2.1.0",
"typedoc-plugin-markdown": "^4.11.0"
},
"lint-staged": {
"*.{ts,js,json,md,yml,yaml}": "prettier --write",
"*.ts": "eslint --fix"
}
}