-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "@taikai/dappkit-launchpad",
"version": "0.0.19",
"description": "@taikai/dappkit tool to parse Solidity ABI into typescript",
"module": "src/transpile.mjs",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/taikai/dappkit-launchpad.git"
},
"bin": {
"dlt": "./bin/transpile.mjs"
},
"scripts": {
"transpile": "node ./bin/transpile.mjs",
"test": "c8 --reporter=text mocha ",
"release": "np"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"change-case": "^4.1.2",
"handlebars": "^4.7.7",
"yargs": "^17.4.1"
},
"devDependencies": {
"c8": "^7.11.3",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"np": "^7.6.1"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/taikai/dappkit-launchpad/issues"
},
"homepage": "https://github.com/taikai/dappkit-launchpad#readme",
"files": [
"config.mjs",
"readme.md",
"src",
"bin",
"utils"
]
}