forked from ArweaveTeam/SmartWeave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "smartweave",
"version": "0.4.25",
"description": "Simple, scalable smart contracts on the Arweave protocol.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"build": "npm run clean && tsc && node build.js",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rimraf ./lib",
"lint": "tslint -p tsconfig.json",
"lint:fix": "npm run lint --fix",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint && npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"bin": {
"smartweave-cli": "lib/bin/smartweave-cli.js",
"smartweave": "lib/bin/smartweave.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArweaveTeam/SmartWeave.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArweaveTeam/SmartWeave/issues"
},
"homepage": "https://github.com/ArweaveTeam/SmartWeave#readme",
"dependencies": {
"@types/clui": "^0.3.0",
"@types/inquirer": "^7.3.1",
"@weavery/clarity": "^0.1.5",
"arweave": "^1.10.2",
"bignumber.js": "^9.0.1",
"chalk": "^4.1.0",
"clui": "^0.3.6",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"json-beautify": "^1.1.1",
"loglevel": "^1.7.0",
"sentencer": "^0.2.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"cp-cli": "^2.0.0",
"esbuild": "^0.8.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}