forked from ton-org/ton-crypto
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 956 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
37
38
39
40
{
"name": "@ton/crypto",
"version": "3.3.0",
"repository": "https://github.com/ton-org/ton-crypto.git",
"author": "Whales Corp. <[email protected]>",
"contributors": [
"Andrei Kostylev <[email protected]>"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -fr dist && tsc --declaration",
"test": "jest",
"release": "yarn build && yarn test && yarn publish"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/sodium-native": "^2.3.9",
"buffer": "^6.0.3",
"expect": "^27.1.0",
"jest": "^27.1.0",
"jest-mock": "^27.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.51.2"
},
"dependencies": {
"sodium-native": "^4.1.1"
},
"packageManager": "[email protected]"
}