-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "@agoda/code-compass",
"version": "0.1.0",
"description": "Enhance static analysis with migration and technical debt metadata",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev": "vitest",
"test": "vitest run",
"build": "tsup",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prebuild": "pnpm run clean",
"prepare": "pnpm run build",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"docs:serve": "serve docs"
},
"keywords": [
"static-analysis",
"eslint",
"technical-debt",
"code-migration",
"metrics"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.57.1",
"globals": "^15.12.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"serve": "^14.2.1",
"tsup": "^8.0.1",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.14.0",
"vitest": "^1.0.4"
},
"peerDependencies": {
"eslint": ">=8.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=9"
}
}