-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.87 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
{
"name": "yttria",
"version": "1.0.0",
"description": "Yttria programming language using LLVM bindings in TypeScript.",
"scripts": {
"install-modules": "npm i",
"daemon-core": "nodemon --exec 'npx ts-node ./core/yttria.ts' --watch core",
"quick-core": "ts-node core/yttria.ts",
"build-core": "npm run clean-core && tsc --p configs/tsconfig-core.json",
"clean-core": "rimraf ./build/core",
"core": "node ./build/core/yttria.js",
"daemon-cli-tool": "nodemon --exec 'npx ts-node ./cli-tool/cli-tool.ts' --watch cli-tool",
"quick-cli": "ts-node cli-tool/cli-tool.ts",
"build-cli-tool": "npm run clean-cli-tool && tsc --p configs/tsconfig-cli-tool.json",
"cli-tool": "node ./build/cli-tool/cli-tool.js",
"clean-cli-tool": "rimraf ./build/cli-tool",
"build": "npm run build-core && npm run build-cli-tool",
"clean": "npm run clean-core && npm run clean-cli-tool && rimraf ./build",
"pack-core": "pkg -t node18-linux-x64,node18-macos-x64,node18-win-x64,node18-alpine-x64 --out-path ./dist/core/ ./build/core/yttria.js",
"pack-cli-tool": "pkg -t node18-linux-x64,node18-macos-x64,node18-win-x64,node18-alpine-x64 --out-path ./dist/cli-tool/ ./build/cli-tool/cli-tool.js",
"pack": "npm run clean && npm run build && npm run pack-core && npm run pack-cli-tool",
"clean-packages": "rimraf ./build && rimraf ./dist"
},
"keywords": [],
"author": "nthnn",
"license": "ISC",
"devDependencies": {
"@types/big.js": "^6.2.0",
"@types/node": "^20.4.10",
"@types/semver": "^7.5.0",
"@types/valid-url": "^1.0.4",
"colors": "^1.4.0",
"llvm-bindings": "^0.4.2",
"nodemon": "^3.0.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.1",
"semver": "^7.5.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"valid-url": "^1.0.9"
},
"dependencies": {
"@types/yargs": "^17.0.24",
"yargs": "^17.7.2"
}
}