-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 990 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 990 Bytes
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
{
"name": "cp2077-json-sdk",
"version": "1.0.1",
"description": "A tool to parse C++ declarations of RED4ext.SDK to AST-like format in JSON.",
"author": "Rayshader",
"license": "MIT",
"keywords": [
"cyberpunk",
"modding",
"red4ext",
"sdk",
"native",
"types",
"json",
"ast",
"dump"
],
"main": "src/index.mjs",
"type": "module",
"scripts": {
"dev": "node src/index.mjs --sdk \"sdk\" --output \"types\" --verbose",
"start": "node src/index.mjs --sdk \"sdk\" --output \"types\" --minify",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"chalk": "^5.5.0",
"tree-sitter": "^0.25.0",
"tree-sitter-cli": "^0.25.8",
"tree-sitter-cpp": "^0.23.4",
"zod": "^3.25.76",
"zod-opts": "^0.1.8"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"babel-jest": "^30.0.5",
"cross-env": "^10.0.0",
"jest": "^30.0.5"
}
}