-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.71 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
{
"version": "0.2.13",
"type": "module",
"name": "unwritten",
"description": "unwritten is a cli tool that auto generates documentation from your JavaScript or TypeScript project by utilizing TSDoc or JSDoc comments.",
"license": "MIT",
"author": "Roger Schönbächler",
"homepage": "https://github.com/schoero/unwritten#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/schoero/unwritten.git"
},
"bugs": {
"url": "https://github.com/schoero/unwritten/issues"
},
"sideEffects": false,
"exports": {
".": "./lib/node/api/node.entry.js",
"./browser": "./lib/browser/api/browser.entry.js",
"./node": "./lib/node/api/node.entry.js"
},
"bin": "./lib/node/bin/index.js",
"scripts": {
"build": "npm run build:browser && npm run build:node",
"build:browser": "vite build --config vite.config.browser.ts",
"build:declaration": "npx tsc --outDir lib --emitDeclarationOnly",
"build:dev": "npm run build:browser && npm run build:node",
"build:node": "vite build",
"eslint": "eslint .",
"eslint:ci": "npm run eslint -- --max-warnings 0",
"eslint:fix": "npm run eslint -- --fix",
"lint": "npm run eslint && npm run markdownlint",
"lint:ci": "npm run eslint:ci && npm run markdownlint:ci",
"lint:fix": "npm run eslint:fix && npm run markdownlint:fix",
"markdownlint": "markdownlint-cli2 '**/*.md' '#**/node_modules'",
"markdownlint:ci": "npm run markdownlint",
"markdownlint:fix": "npm run markdownlint -- --fix",
"postrelease:alpha": "npm run postrelease",
"postrelease:beta": "npm run postrelease",
"postrelease:latest": "eslint --fix package.json && markdownlint-cli2 --fix 'CHANGELOG.md'",
"prebuild": "npm run typecheck && npm run lint && npm run spellcheck && npm run schema",
"prerelease:alpha": "npm run test -- --run && npm run build",
"prerelease:beta": "npm run test -- --run && npm run build",
"prerelease:latest": "npm run test -- --run && npm run build",
"publish:alpha": "npm run publish:latest -- --publishTag alpha",
"publish:beta": "npm run publish:latest -- --publishTag beta",
"publish:latest": "changelogen gh release && changelogen --publish",
"release:alpha": "npm run release -- --prerelease alpha",
"release:beta": "npm run release -- --prerelease beta",
"release:latest": "changelogen --bump --output --no-tag",
"schema": "ts-json-schema-generator --path './src/type-definitions/config.d.ts' --type ConfigForSchema --tsconfig ./tsconfig.schema.json --out schemas/renderer/config.json",
"spellcheck": "cspell lint",
"spellcheck:ci": "npm run spellcheck -- --no-progress",
"test": "vitest -c ./vite.config.ts",
"test:interpreter": "vitest --c ./vite.config.ts --dir src/interpreter",
"test:renderer": "vitest -c ./vite.config.ts --dir src/renderer",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=16.9.0"
},
"files": [
"lib"
],
"dependencies": {
"cac": "^6.7.14",
"minimatch": "^10.0.1",
"tinyhighlight": "^0.3.2",
"typescript": "^5.5.4"
},
"devDependencies": {
"@schoero/configs": "^1.0.40",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.5.1",
"changelogen": "^0.5.5",
"cspell": "^8.14.2",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-sort-exports": "^0.9.1",
"rollup-plugin-preserve-shebang": "^1.0.1",
"ts-json-schema-generator": "^2.3.0",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^2.0.5"
},
"keywords": [
"documentation",
"docs",
"api",
"jsdoc",
"tsdoc",
"generator",
"description",
"generation",
"typescript",
"javascript"
],
"volta": {
"node": "22.3.0"
}
}