-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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": "@think-cell/typescripten",
"version": "1.0.4",
"description": "Typescripten converts TypeScript interface definitions into C++ headers for emscripten projects",
"main": "lib/typescriptenc.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/think-cell/typescripten.git"
},
"keywords": [
"TypeScript",
"emscripten",
"WebAssembly",
"C++"
],
"author": "Sebastian Theophil",
"license": "MIT",
"bugs": {
"url": "https://github.com/think-cell/typescripten/issues"
},
"homepage": "https://github.com/think-cell/typescripten#readme",
"bin": {
"typescriptenc": "./bin/typescriptenc.js"
},
"dependencies": {
"typescript": "=4.4",
"@typescript/vfs": "^1.3.5"
},
"devDependencies": {
"@types/lz-string": "^1.3.34",
"@types/node": "^13.7.6",
"exports-loader": "^3.1.0",
"file-loader": "^6.2.0",
"lz-string": "^1.4.4",
"source-map-support": "^0.5.20",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
}
}