-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
37 lines (37 loc) · 935 Bytes
/
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
{
"name": "javascript-kit-swift",
"version": "0.7.2",
"description": "A runtime library of JavaScriptKit which is Swift framework to interact with JavaScript through WebAssembly.",
"main": "Runtime/lib/index.js",
"files": [
"Runtime/lib"
],
"scripts": {
"build": "npm run build:clean && npm run build:ts",
"build:clean": "rm -rf Runtime/lib",
"build:ts": "cd Runtime; tsc -b",
"prepublishOnly": "npm run build"
},
"keywords": [
"Swift",
"WebAssembly",
"wasm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/swiftwasm/JavaScriptKit.git"
},
"homepage": "https://github.com/swiftwasm/JavaScriptKit",
"bugs": {
"url": "https://github.com/swiftwasm/JavaScriptKit/issues"
},
"publishConfig": {
"access": "public"
},
"author": "swiftwasm",
"license": "MIT",
"devDependencies": {
"prettier": "2.1.2",
"typescript": "^4.0.2"
}
}