-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.71 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
{
"name": "pharaoh-parser",
"version": "1.0.0",
"description": "Open-source AST parser used by Pharaoh to extract structural metadata from TypeScript and Python codebases. No source code is ever captured.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Pharaoh-so/pharaoh-parser.git"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"pharaoh-inspect": "./bin/inspect.js"
},
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./src/types.ts",
"import": "./dist/types.js"
},
"./tree-sitter": {
"types": "./src/tree-sitter.ts",
"import": "./dist/tree-sitter.js"
},
"./python": {
"types": "./src/python-tree-sitter.ts",
"import": "./dist/python-tree-sitter.js"
},
"./walker": {
"types": "./src/file-walker.ts",
"import": "./dist/file-walker.js"
},
"./modules": {
"types": "./src/module-detector.ts",
"import": "./dist/module-detector.js"
},
"./wasm": {
"types": "./src/wasm-init.ts",
"import": "./dist/wasm-init.js"
},
"./shared": {
"types": "./src/parser-shared.ts",
"import": "./dist/parser-shared.js"
}
},
"files": [
"src/",
"dist/",
"bin/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"inspect": "node --import=tsx bin/inspect.js",
"lint": "biome check src/ tests/"
},
"dependencies": {
"ignore": "^7.0.5",
"tree-sitter-python": "^0.25.0",
"tree-sitter-typescript": "^0.23.2",
"tsx": "^4.19.0",
"web-tree-sitter": "^0.26.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}