This repository was archived by the owner on May 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2 KB
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
{
"name": "@tangle-js/tangle-cli",
"version": "0.11.1",
"description": "CLI for Tangle.js",
"bin": {
"tcli": "./bin/tcli"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-clean": "rimraf ./dist/*",
"build-format": "prettier ./src/** --write",
"build-lint": "eslint src --ext .ts",
"build-compile": "tsc",
"build-watch": "tsc --watch",
"build": "npm-run-all build-clean build-format build-compile build-lint",
"start": "node ./dist/tcli",
"generate-readme": "npm run build && chmod +x ./scripts/generate-readme.sh && ./scripts/generate-readme.sh > USAGE.gen.md"
},
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/tangle.js.git"
},
"keywords": [
"iota",
"chrysalis",
"cli",
"util"
],
"engines": {
"node": ">=16"
},
"author": "Jose M. Cantera",
"license": "MIT",
"bugs": {
"url": "https://github.com/iotaledger/tangle.js/issues"
},
"homepage": "https://github.com/iotaledger/tangle.js/tools/tangle-cli#readme",
"dependencies": {
"@iota/identity-wasm": "0.5.1",
"@iota/iota.js": "^1.8.1",
"@iota/util.js": "^1.8.1",
"yargs": "^16.2.0",
"@tangle-js/anchors": "0.9.3",
"bs58": "^4.0.1"
},
"devDependencies": {
"@types/node-fetch": "^3.0.3",
"@types/node": "^14.0.27",
"@types/yargs": "^16.0.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.2.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-unicorn": "^37.0.1",
"eslint-template-visitor": "^2.3.2",
"prettier": "^2.4.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
},
"files": [
"dist"
]
}