-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1007 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
{
"name": "priv-key-precommit",
"version": "0.5.0",
"description": "",
"scripts": {
"dev": "ncc build ./index.ts -w -o dist/",
"prerelease": "rimraf ./dist/",
"release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"prepublish": "yarn release",
"semantic-release": "semantic-release"
},
"files": [
"dist"
],
"bin": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Dhaiwat10/priv-key-precommit"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dhaiwat10/priv-key-precommit/issues"
},
"homepage": "https://github.com/Dhaiwat10/priv-key-precommit#readme",
"devDependencies": {
"@types/node": "^17.0.31",
"@types/secp256k1": "^4.0.3",
"@vercel/ncc": "^0.33.4",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.6.4"
},
"dependencies": {
"chalk": "^5.0.1",
"secp256k1": "^4.0.3"
}
}