-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2 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
{
"name": "docsxai-monorepo",
"version": "0.0.0",
"private": true,
"description": "docsxai monorepo — OSS engine + Claude Code plugin that walks a web app, follows written flows, and emits screenshot-rich user documentation.",
"license": "Apache-2.0",
"author": "Kalebtec <security@kalebtec.com>",
"homepage": "https://github.com/kalebteccom/docsxai",
"repository": {
"type": "git",
"url": "git+https://github.com/kalebteccom/docsxai.git"
},
"bugs": {
"url": "https://github.com/kalebteccom/docsxai/issues"
},
"type": "module",
"engines": {
"node": ">=26"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"depcruise": "depcruise packages/*/src --config .dependency-cruiser.cjs",
"jscpd:check": "jscpd --config .jscpd.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "pnpm --filter @docsxai/website dev",
"docs:build": "pnpm --filter @docsxai/website build",
"docs:preview": "pnpm --filter @docsxai/website preview",
"licenses:check": "license-checker-rseidelsohn --production --excludePrivatePackages --onlyAllow 'MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;0BSD;Unlicense;CC0-1.0'",
"audit:prod": "pnpm audit --prod --audit-level=high"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^20.14.0",
"dependency-cruiser": "^18.0.0",
"eslint": "^9.12.0",
"eslint-plugin-import-x": "^4.3.0",
"globals": "^15.11.0",
"jscpd": "^5.0.11",
"license-checker-rseidelsohn": "^4.4.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.5.0",
"typescript-eslint": "^8.8.0",
"vitest": "^2.0.0"
}
}