-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "@smart-chain-fr/smartgitanchor",
"version": "1.1.3",
"description": "SmartGitAnchor is a versatile Node.js package designed for computing and securely transmitting file hashes. It is used to anchor files on the Tezos or Ethereum blockchains.",
"main": "index.js",
"type": "module",
"outdir": "./dist",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"start": "node dist/index.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smart-chain-fr/SmartGitAnchor.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Team smart-chain",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-chain-fr/SmartGitAnchor/issues"
},
"homepage": "https://github.com/smart-chain-fr/SmartGitAnchor#readme",
"devDependencies": {
"@types/node": "^20.9.4",
"@types/yargs": "^17.0.32"
},
"dependencies": {
"@smart-chain-fr/asyncbatch": "^1.1.6",
"node-fetch": "^3.3.2",
"prettier": "^3.1.0",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"bin": {
"smartgitanchor": "./dist/bin.js"
}
}