-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 915 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": "clp-ffi-js",
"version": "0.3.4",
"description": "clp-ffi-js is a JavaScript FFI library for CLP.",
"author": "YScope Inc. <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/y-scope/clp-ffi-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/y-scope/clp-ffi-js.git"
},
"bugs": {
"url": "https://github.com/y-scope/clp-ffi-js/issues"
},
"scripts": {
"release": "git diff --exit-code && task package && npm publish"
},
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/ClpFfiJs-worker.js",
"types": "./dist/ClpFfiJs-worker.d.ts"
},
"./node": {
"import": "./dist/ClpFfiJs-node.js",
"types": "./dist/ClpFfiJs-node.d.ts"
},
"./worker": {
"import": "./dist/ClpFfiJs-worker.js",
"types": "./dist/ClpFfiJs-worker.d.ts"
}
}
}