-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@masknet/secp256k1-webcrypto",
"packageManager": "[email protected]",
"version": "1.0.0",
"description": "WebCrypto API with secp256k1 support",
"main": "./dist/web.js",
"types": "./dist/web.d.ts",
"typesVersions": {
"*": {
"core": [
"./dist/core.d.ts"
],
"web": [
"./dist/web.d.ts"
],
"node": [
"./dist/node.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/web.d.ts",
"node": "./dist/node.js",
"default": "./dist/web.js"
},
"./web": {
"types": "./dist/web.d.ts",
"default": "./dist/web.js"
},
"./node": {
"types": "./dist/node.d.ts",
"default": "./dist/node.js"
},
"./core": {
"types": "./dist/core.d.ts",
"default": "./dist/core.js"
},
"./package.json": "./package.json"
},
"type": "module",
"scripts": {
"watch": "tsc -p tsconfig.json -w",
"build": "tsc -p tsconfig.json",
"publish": "pnpm run build && npx changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DimensionDev/secp256k1-webcrypto.git"
},
"keywords": [
"secp256k1",
"webcrypto"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DimensionDev/secp256k1-webcrypto/issues"
},
"homepage": "https://github.com/DimensionDev/secp256k1-webcrypto#readme",
"devDependencies": {
"@changesets/cli": "^2.25.1",
"@types/elliptic": "^6.4.14",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"elliptic": "^6.5.4",
"pvtsutils": "^1.3.2"
},
"files": [
"dist",
"package.json",
"src"
],
"pnpm": {
"onlyBuiltDependencies": []
}
}