-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 810 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 810 Bytes
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
{
"name": "napi-wasm",
"version": "1.1.3",
"description": "An implementation of napi for wasm",
"main": "index.mjs",
"exports": {
"import": "./index.mjs",
"require": "./index.js"
},
"files": [
"index.js",
"index.mjs"
],
"scripts": {
"prepublishOnly": "sed 's/^export //g' index.mjs > index.js && echo '\nexports.Environment = Environment;\nexports.napi = napi;' >> index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devongovett/napi-wasm.git"
},
"keywords": [
"napi",
"wasm",
"node-api",
"rust"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/napi-wasm/issues"
},
"homepage": "https://github.com/devongovett/napi-wasm#readme"
}