-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.45 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.45 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
67
68
69
{
"name": "duckgpt",
"version": "1.0.0",
"description": "DuckGPT - On-Chain AI Plugin Hub",
"main": "index.js",
"scripts": {
"setup": "node scripts/setup-environment.js",
"deploy:contracts": "cd contracts && npx hardhat run scripts/deploy.js --network localhost",
"deploy:contracts:testnet": "cd contracts && npx hardhat run scripts/deploy.js --network testnet",
"deploy:contracts:mainnet": "cd contracts && npx hardhat run scripts/deploy.js --network mainnet",
"deploy:infrastructure": "node scripts/deploy-infrastructure.js",
"deploy:all": "npm run deploy:contracts && npm run deploy:infrastructure",
"test": "npm run test:contracts && npm run test:sdk && npm run test:integration",
"test:contracts": "cd contracts && npx hardhat test",
"test:sdk": "cd sdk/javascript && npm test",
"test:integration": "jest tests/integration",
"lint": "eslint . --ext .js,.ts --ignore-path .gitignore",
"format": "prettier --write .",
"clean": "npm run clean:contracts && npm run clean:infrastructure",
"clean:contracts": "cd contracts && npx hardhat clean",
"clean:infrastructure": "cd gateway && npx serverless remove && cd ../plugins/summarizer && npx serverless remove && cd ../meme-generator && npx serverless remove && cd ../nft-appraiser && npx serverless remove",
"dev:bot": "cd demo/telegram-bot && npm run dev",
"start:bot": "cd demo/telegram-bot && npm start",
"docs:generate": "typedoc --out docs/api src/",
"version:bump": "npm version patch && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uncletom29/duckgpt.git"
},
"keywords": [
"ai",
"blockchain",
"defi",
"plugins",
"serverless",
"web3"
],
"author": "DuckGPT Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/uncletom29/duckgpt/issues"
},
"homepage": "https://github.com/uncletom29/duckgpt#readme",
"devDependencies": {
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"supertest": "^6.3.3",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"workspaces": [
"contracts",
"gateway",
"plugins/*",
"sdk/*",
"demo/*"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}