-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@astx/runtime",
"version": "1.3.0",
"description": "Compile and run ASTX files from your command line",
"main": "src/index.ts",
"bin": {
"astx": "dist/index.js"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "jest --passWithNoTests",
"prepack": "npm run build",
"prestart": "npm run build",
"start": "node dist/index.js",
"package": "npm run build && pkg ."
},
"author": "Alexander Neitzel",
"license": "GPL-3.0-only",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@astx/lib": "^1.4.0",
"commander": "^13.1.0"
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "bundle"
},
"repository": {
"type": "git",
"url": "https://github.com/TheRealFloatDev/astx-runtime.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}