-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "@toruslabs/starkware-crypto",
"version": "4.0.1",
"description": "Signatures, keys and Pedersen hash on STARK friendly elliptic curve",
"main": "dist/lib.cjs/index.js",
"types": "dist/types/index.d.ts",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/starkwareCrypto.umd.js",
"jsdelivr": "dist/starkwareCrypto.umd.js",
"sideEffects": false,
"scripts": {
"dev": "torus-scripts build",
"build": "torus-scripts build",
"release": "torus-scripts release",
"prepack": "npm run build",
"lint": "eslint --fix 'src/**/*.ts'",
"prepare": "husky",
"test": "mocha test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/starkware-crypto.git"
},
"peerDependencies": {
"@babel/runtime": "7.x"
},
"bugs": {
"url": "https://github.com/torusresearch/starkware-crypto/issues"
},
"homepage": "https://github.com/torusresearch/starkware-crypto#readme",
"dependencies": {
"assert": "^2.1.0",
"bip39": "^3.1.0",
"bn.js": "^5.2.1",
"elliptic": "^6.6.1",
"enc-utils": "^3.0.0",
"ethereum-cryptography": "^2.2.1",
"hash.js": "^1.1.7"
},
"devDependencies": {
"@babel/register": "^7.25.9",
"@toruslabs/eslint-config-typescript": "^3.3.4",
"@toruslabs/torus-scripts": "^6.1.6",
"@types/elliptic": "^6.4.18",
"chai": "^5.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"files": [
"dist"
],
"author": "Torus Labs",
"license": "MIT",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,json, md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}