-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
43 lines (43 loc) · 1.12 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
43
{
"name": "javascript-kit-swift",
"version": "0.0.0",
"description": "A runtime library of JavaScriptKit which is Swift framework to interact with JavaScript through WebAssembly.",
"main": "Runtime/lib/index.js",
"module": "Runtime/lib/index.mjs",
"types": "Runtime/lib/index.d.ts",
"files": [
"Runtime/lib"
],
"scripts": {
"build": "npm run build:clean && npm run build:ts",
"build:clean": "rm -rf Runtime/lib",
"build:ts": "cd Runtime; rollup -c",
"prepublishOnly": "npm run build",
"format": "prettier --write Runtime/src"
},
"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": {
"@rollup/plugin-typescript": "^8.3.1",
"prettier": "2.6.1",
"rollup": "^2.70.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
}
}