-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.96 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.96 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
78
79
80
81
82
{
"name": "@opensyntaxhq/autodocs",
"version": "2.1.1",
"description": "CLI for Autodocs documentation generator",
"bin": {
"autodocs": "dist/index.js"
},
"files": [
"dist",
"ui-dist"
],
"scripts": {
"build": "tsup src/index.ts src/index-exports.ts --format cjs --dts --no-splitting",
"prepare:ui-dist": "node scripts/prepare-ui-dist.js",
"prepack": "npm run prepare:ui-dist",
"dev": "tsup src/index.ts --format cjs --watch",
"lint": "eslint .",
"test": "jest",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist ui-dist"
},
"exports": {
".": {
"types": "./dist/index-exports.d.ts",
"default": "./dist/index-exports.js"
},
"./config": {
"types": "./dist/index-exports.d.ts",
"default": "./dist/index-exports.js"
}
},
"dependencies": {
"@opensyntaxhq/autodocs-core": "^2.1.1",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"cosmiconfig": "^9.0.1",
"express": "^5.2.1",
"glob": "^13.0.6",
"inquirer": "^13.3.2",
"jiti": "^2.6.1",
"open": "^11.0.0",
"ora": "^9.3.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.2",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"main": "./dist/index-exports.js",
"types": "./dist/index-exports.d.ts",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenSyntaxHQ/autodocs.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/OpenSyntaxHQ/autodocs/issues"
},
"homepage": "https://github.com/OpenSyntaxHQ/autodocs",
"keywords": [
"documentation",
"typescript",
"cli",
"api-docs",
"jsdoc"
],
"publishConfig": {
"access": "public"
},
"author": "OpenSyntaxHQ",
"license": "Apache-2.0",
"type": "commonjs"
}