-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
{
"name": "dependicus",
"version": "0.2.2-rc.1",
"description": "Dependency governance for monorepos: pnpm, bun, yarn, npm, aube, mise, uv, Go, and Rust",
"keywords": [
"audit",
"dashboard",
"dependency",
"governance",
"monorepo",
"outdated"
],
"homepage": "https://github.com/descriptinc/dependicus",
"bugs": "https://github.com/descriptinc/dependicus/issues",
"license": "MIT",
"author": "Descript, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/descriptinc/dependicus.git"
},
"bin": "dist/bin.mjs",
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"source": "./src/index.ts",
"default": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dependicus": "node dist/bin.mjs",
"build": "node scripts/build-assets.mjs && tsdown",
"prepack": "pnpm run build",
"clean": "rm -rf dist",
"test": "vitest run",
"typedoc": "typedoc --tsconfig tsconfig.typedoc.json --entryPoints src/index.ts --out typedoc-out --name 'Dependicus API Reference'",
"typecheck": "tsc --build tsconfig.json",
"lint": "oxlint --deny-warnings",
"format": "oxfmt --write .",
"format:check": "oxfmt --check ."
},
"dependencies": {
"@linear/sdk": "^76.0.0",
"@octokit/rest": "^22.0.1",
"@turingpointde/cvss.js": "^2.1.0",
"commander": "^14.0.3",
"handlebars": "^4.7.8",
"isomorphic-dompurify": "^3.5.1",
"js-yaml": "^4.1.1",
"marked": "^17.0.3",
"open-props": "^1.7.23",
"semver": "^7.7.4",
"slugify": "^1.6.9",
"tabulator-tables": "^6.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.0",
"@types/semver": "^7.7.1",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"rolldown": "1.0.0-rc.10",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20"
}
}