-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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": "yolang",
"version": "1.0.0",
"description": "Simple language targetting LLVM",
"main": "build/yolang.js",
"scripts": {
"test": "jest",
"build": "esbuild src/main.ts --bundle --outfile=build/yolang.js --platform=node",
"watch": "esbuild src/main.ts --bundle --sourcemap --outfile=build/yolang.js --watch --platform=node",
"typeCheck": "npx tsc --noEmit",
"postinstall": "mkdir -p build && cp node_modules/llvm-bindings/build/Release/llvm-bindings.node ./build && bash setup_wasi.sh"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/jest": "^28.1.6",
"command-exists": "^1.2.9",
"esbuild": "^0.15.5",
"fast-check": "^2.20.0",
"itsamatch": "^1.1.2",
"jest": "^28.1.3",
"llvm-bindings": "^0.4.2",
"ts-jest": "^28.0.7",
"ts-pattern": "^4.0.5",
"typescript": "^4.8.2",
"commander": "^9.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathsou/yolang-ts.git"
},
"keywords": [
"Yolang",
"WASM",
"WASI"
],
"author": "Nathan Soufflet",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathsou/yolang-ts/issues"
},
"homepage": "https://github.com/nathsou/yolang-ts#readme"
}