-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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": "@greymass/abi2core",
"description": "Library and command line tool to generate @wharfkit/antelope types from Antelope ABI definitions",
"version": "2.0.1",
"homepage": "https://github.com/greymass/abi2core",
"license": "BSD-3-Clause",
"main": "lib/abi2core.js",
"module": "lib/abi2core.m.js",
"types": "lib/abi2core.d.ts",
"engines": {
"node": ">=12"
},
"bin": {
"abi2core": "lib/abi2core.js"
},
"sideEffects": false,
"files": [
"lib/*",
"src/*"
],
"scripts": {
"prepare": "make"
},
"dependencies": {
"@wharfkit/antelope": "^0.7.0",
"argparse": "^2.0.1",
"tslib": "^2.1.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.1",
"@types/argparse": "^2.0.5",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"assert": "^2.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.1.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rollup": "^2.38.2",
"rollup-plugin-dts": "^4.2.0",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.1.2"
}
}