-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "native-ts",
"version": "1.0.0",
"description": "A modern Typescript transpiler to llvm",
"main": "dist/lib.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc src/index.ts --outDir dist",
"start": "node .",
"dev": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauro-balades/NativeTS.git"
},
"keywords": [
"llvm",
"ts",
"typescript"
],
"author": "mauro-balades",
"license": "MIT",
"bugs": {
"url": "https://github.com/mauro-balades/NativeTS/issues"
},
"homepage": "https://github.com/mauro-balades/NativeTS#readme",
"dependencies": {
"commander": "^9.0.0",
"llvm-node": "^3.0.0",
"ramda": "^0.28.0",
"segfault-handler": "^1.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/ramda": "^0.28.1"
}
}