-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
93 lines (93 loc) · 2.73 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@starkware-industries/starkware-crypto-utils",
"version": "0.2.1",
"description": "Signatures, keys and Pedersen hash on STARK friendly elliptic curve",
"keywords": [
"stark",
"signature",
"EC",
"Elliptic",
"curve",
"Cryptography"
],
"homepage": "https://github.com/starkware-libs/starkware-crypto-utils#readme",
"bugs": {
"url": "https://github.com/starkware-libs/starkware-crypto-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starkware-libs/starkware-crypto-utils.git"
},
"license": "Apache-2.0",
"author": "StarkWare Industries Ltd.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src/config",
"src/js",
"package.json",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"prebuild": "npm run clean",
"build": "vite build",
"clean": "rm -rf ./dist",
"dev": "webpack-dev-server --mode development",
"docs:generate": "typedoc",
"format": "prettier --write \"**/*.+(ts|js|json|md|html|yml)\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"npm-publish": "npm publish --access public",
"release": "semantic-release",
"release:dry": "semantic-release --no-ci --dry-run",
"test": "env TS_NODE_PROJECT=\"tsconfig.testing.json\" mocha"
},
"dependencies": {
"assert": "^2.0.0",
"bip39": "^3.0.4",
"bn.js": "^4.12.0",
"brorand": "^1.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"elliptic": "^6.5.4",
"enc-utils": "^3.0.0",
"ethereumjs-wallet": "^1.0.2",
"hash.js": "^1.1.7",
"hmac-drbg": "^1.0.1",
"inherits": "^2.0.4",
"js-sha3": "^0.8.0",
"minimalistic-assert": "^1.0.1",
"minimalistic-crypto-utils": "^1.0.1",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.4",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"chai": "^4.3.7",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"semantic-release": "^19.0.5",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.16",
"typescript": "^4.8.4",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3"
}
}