-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 925 Bytes
/
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
{
"name": "adelante",
"type": "module",
"version": "1.1.7",
"main": "index.ts",
"types": "types.ts",
"author": "Seyaji",
"license": "GNU GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/Seyaji/adelante"
},
"dependencies": {
"app-root-path": "^3.0.0",
"inquirer": "^9.0.0"
},
"devDependencies": {
"@metamask/providers": "^9.0.0",
"@types/app-root-path": "^1.2.4",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"ethers": "^5.6.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"startjs": "node ./dist/index.js",
"build": "tsc && npm pack"
},
"bin": {
"adelante": "./dist/index.js"
}
}