forked from ArweaveTeam/wasm-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "@arweave/wasm-secp256k1",
"version": "0.0.4",
"description": "Minimal wrapper around libsecp256k1 library (https://github.com/bitcoin-core/secp256k1).",
"license": "MIT",
"main": "dist/main.cjs",
"files": [
"dist/"
],
"type": "commonjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"require": "./dist/main.cjs",
"import": "./dist/main.esm.js"
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-wasm": "^6.2.2",
"@rollup/pluginutils": "^5.1.4",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.5",
"@types/web": "^0.0.188",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-plugin-unused-imports": "^4.1.4",
"rollup": "^4.29.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArweaveTeam/wasm-secp256k1.git"
},
"scripts": {
"build": "bunx rollup -c rollup.config.ts --configPlugin typescript"
}
}