-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "doxy",
"version": "0.1.0",
"description": "Static API compatibility verifier — catches deprecated, removed, and future APIs at lint time",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"doxy": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run test"
},
"keywords": [
"static-analysis",
"api-compatibility",
"deprecated",
"lint",
"react",
"nextjs"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@swc/core": "^1.10.0",
"citty": "^0.1.6",
"semver": "^7.6.0",
"simple-git": "^3.27.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/semver": "^7.5.0",
"eslint": "^9.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}