This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
forked from ArweaveTeam/SmartWeave
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.13 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
{
"name": "smartweave",
"version": "0.4.49",
"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",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"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",
"resolutions": {
"**/arweave": "^1.11.4",
"**/arbundles": "^0.6.19"
},
"dependencies": {
"@types/clui": "^0.3.1",
"@types/inquirer": "^8.2.1",
"@weavery/clarity": "^0.1.5",
"arweave": "^1.11.4",
"bignumber.js": "^9.0.2",
"chalk": "^4.x",
"clui": "^0.3.6",
"figlet": "^1.5.2",
"inquirer": "^8.2.4",
"json-beautify": "^1.1.1",
"loglevel": "^1.8.0",
"sentencer": "^0.2.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^17.0.38",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"arlocal": "^1.1.40",
"cp-cli": "^2.0.0",
"esbuild": "^0.14.42",
"jest": "^28.1.0",
"node-fetch": "^2.x",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.2"
}
}