forked from swiftwasm/JavaScriptKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
40
41
42
43
44
45
46
{
"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": {
"@bjorn3/browser_wasi_shim": "^0.4.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.14",
"playwright": "^1.52.0",
"prettier": "3.5.3",
"rollup": "^4.37.0",
"rollup-plugin-dts": "^6.2.1",
"typescript": "^5.8.2"
}
}