-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.08 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
{
"name": "@jsdocs-io/extractor",
"version": "1.0.0-13",
"description": "The API extractor for npm packages powering jsdocs.io",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Edoardo Scibona",
"url": "http://github.com/velut"
},
"repository": {
"type": "git",
"url": "https://github.com/jsdocs-io/extractor.git"
},
"bugs": {
"url": "https://github.com/jsdocs-io/extractor/issues"
},
"keywords": [
"npm",
"registry",
"package",
"analyze",
"api",
"extractor",
"documentation",
"generator",
"typescript",
"javascript",
"jsdoc",
"tsdoc",
"jsdocs.io"
],
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"check": "tsc --noEmit",
"build": "tsc --noEmit && tsup",
"attw": "attw --pack . --ignore-rules cjs-resolves-to-esm",
"test": "bun --revision && vitest run src test/declarations --coverage --bail 1",
"test:ci": "bun --revision && vitest run src test/declarations test/packages --coverage --bail 1",
"test:update": "bun --revision && vitest run src test/declarations test/packages --update",
"lint": "prettier --check .",
"format": "prettier --write .",
"pre-push": "bun --revision && pnpm i && pnpm lint && pnpm build && pnpm test:ci",
"release": "np"
},
"dependencies": {
"@microsoft/tsdoc": "^0.15.0",
"effect": "^3.9.1",
"execa": "^9.4.0",
"memoize": "^10.0.0",
"natural-orderby": "^5.0.0",
"pathe": "^1.1.2",
"prettier": "^3.3.3",
"read-pkg": "^9.0.1",
"resolve.exports": "^2.0.2",
"tempy": "^3.1.0",
"ts-morph": "^24.0.0",
"validate-npm-package-name": "^6.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@total-typescript/shoehorn": "^0.1.2",
"@types/node": "^22.7.5",
"@types/validate-npm-package-name": "^4.0.2",
"@vitest/coverage-v8": "^2.1.2",
"np": "^10.0.7",
"ts-dedent": "^2.2.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.2"
}
}