-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "hardhat-contract-clarity",
"version": "0.1.2",
"description": "Tool that summarizes smart contracts using OpenAI GPT3 and generate README.md files",
"repository": "https://github.com/marc-aurele-besner/hardhat-contract-clarity.git",
"author": "Marc-Aurele Besner <82244926+marc-aurele-besner@users.noreply.github.com>",
"license": "MIT",
"main": "dist/index",
"typings": "dist/index",
"bin": {
"clarity": "./index.ts"
},
"bugs": {
"url": "https://github.com/marc-aurele-besner/hardhat-contract-clarity/issues"
},
"types": "dist/index.d.ts",
"keywords": [
"openai",
"gpt3",
"clarity",
"solidity",
"ethereum",
"hardhat",
"smart-contract",
"readme"
],
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"lint:fix": "prettier --write src/**/*.{js,ts} && tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"prepublishOnly": "tsc --project tsconfig.prod.json",
"build": "npx awesome-readme && tsc --project tsconfig.prod.json",
"watch": "tsc -w"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^20.0.0",
"awesome-readme": "^0.0.8",
"hardhat": "^2.12.7",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"hardhat": "^2.12.7"
},
"dependencies": {
"fs": "^0.0.1-security",
"inquirer": "^8.2.5",
"openai": "^4.0.0"
}
}