-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@joernio/astgen",
"version": "3.19.0",
"description": "Generate JS/TS AST in json format with Babel",
"exports": "./index.js",
"keywords": [
"AST",
"Static Analysis"
],
"bin": {
"astgen": "./dist/astgen.js"
},
"repository": "https://github.com/joernio/astgen",
"author": "Max Leuthaeuser",
"license": "Apache-2.0",
"dependencies": {
"@babel/parser": "^7.24.7",
"n-readlines": "^1.0.1",
"readdirp": "^4.0.2",
"yargs": "^17.7.2"
},
"scripts": {
"build": "tsc --build",
"binary": "pkg . --options max-old-space-size=8192 --no-bytecode --no-native-build --public --compress GZip --targets node18-linux-x64,node18-linux-arm64,node18-macos-x64,node18-win-x64,node18-macos-arm64"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"*.js",
"dist/"
],
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/n-readlines": "^1.0.6",
"@types/node": "^16.1.3",
"@types/yargs": "^17.0.33",
"cross-env": "^7.0.3",
"pkg": "^5.8.1",
"typescript": "^5.5.3"
}
}