-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 2.65 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
{
"name": "@es-joy/jsdoccomment",
"version": "0.50.0",
"author": "Brett Zamir <[email protected]>",
"contributors": [],
"description": "Maintained replacement for ESLint's deprecated SourceCode#getJSDocComment along with other jsdoc utilities",
"license": "MIT",
"keywords": [
"ast",
"comment",
"estree",
"jsdoc",
"parser",
"eslint",
"sourcecode"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./src/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs.cjs"
}
}
},
"browserslist": [
"defaults, not op_mini all"
],
"scripts": {
"build": "rollup -c && npm run types",
"docs": "typedoc-pkg --api-link es",
"eslint": "eslint .",
"lint": "npm run eslint --",
"open": "open ./coverage/index.html",
"prepublishOnly": "pnpm i && npm run build",
"test": "npm run lint && npm run build && npm run test-cov",
"test-ui": "vitest --ui --coverage",
"test-cov": "vitest --coverage",
"tsc": "tsc",
"types": "esm-d-ts gen ./src/index.js --output ./dist/index.d.ts --emitCTS"
},
"typedocOptions": {
"dmtLinksService": {
"GitHub": "https://github.com/es-joy/jsdoccomment",
"NPM": "https://www.npmjs.com/package/@es-joy/jsdoccomment"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-joy/jsdoccomment.git"
},
"bugs": {
"url": "https://github.com/es-joy/jsdoccomment/issues"
},
"homepage": "https://github.com/es-joy/jsdoccomment",
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.6",
"@typescript-eslint/types": "^8.11.0",
"comment-parser": "1.4.1",
"esquery": "^1.6.0",
"jsdoc-type-pratt-parser": "~4.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.25.9",
"@rollup/plugin-babel": "^6.0.4",
"@types/esquery": "^1.5.4",
"@types/estraverse": "^5.1.7",
"@typescript-eslint/visitor-keys": "^8.11.0",
"@typhonjs-build-test/esm-d-ts": "^0.3.0-next.9",
"@typhonjs-typedoc/typedoc-pkg": "^0.1.2",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"eslint": "^9.13.0",
"eslint-config-ash-nazg": "36.12.0",
"espree": "^10.2.0",
"estraverse": "^5.3.0",
"rollup": "^4.24.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.3"
},
"files": [
"/dist",
"/src",
"CHANGES.md",
"LICENSE-MIT.txt"
]
}