-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "@binbinji/jsdoctomd",
"version": "0.0.5",
"description": "A tool that converts JS or TS files with JSDoc comments into markdown.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"docs:generate": "gulp",
"format": "prettier --write .",
"lint": "eslint . --fix --ext .ts,.js",
"clean": "rimraf node_modules dist docs",
"release": "pnpm build && vr release"
},
"keywords": [
"JSDoc",
"markdown",
"Javascript",
"Typescript"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/chouchouji/jsdoctomd.git"
},
"bugs": {
"url": "https://github.com/chouchouji/jsdoctomd/issues"
},
"author": "chouchouji [email protected]",
"license": "MIT",
"devDependencies": {
"@binbinji/jsdoctomd": "latest",
"@types/esprima": "^4.0.6",
"@types/node": "^22.8.6",
"@varlet/eslint-config": "^3.6.3",
"@varlet/release": "^0.3.1",
"eslint": "8.x",
"gulp": "^5.0.0",
"gulp-rename": "^2.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "5.1.6"
},
"dependencies": {
"comment-parser": "^1.4.1",
"esprima": "^4.0.1"
},
"packageManager": "[email protected]"
}