-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "codemetrica",
"version": "1.0.0",
"description": "TypeScript code metrics and smell detection powered by tree-sitter",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dev": "tsx examples/main.ts",
"docs:install": "npm install --prefix website",
"docs:dev": "npm --prefix website run dev",
"docs:build": "npm --prefix website run build",
"docs:serve": "npm --prefix website run serve",
"docs:typedoc": "npm --prefix website run typedoc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc -p tsconfig.json --noEmit"
},
"keywords": [
"tree-sitter",
"metrics",
"code-smells",
"typescript",
"python"
],
"author": "",
"license": "MIT",
"dependencies": {
"tree-sitter": "^0.21.1",
"tree-sitter-python": "^0.21.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}