-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
36 lines (36 loc) · 874 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
{
"name": "javascript-kit-swift",
"version": "0.5.0",
"description": "A runtime library of JavaScriptKit which is Swift framework to interact with JavaScript through WebAssembly.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run build:clean && npm run build:ts",
"build:clean": "rm -rf lib",
"build:ts": "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": {
"typescript": "^3.8.3"
}
}