-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "abi-wan-kanabi",
"version": "2.2.3",
"description": "Abi parser for Cairo smart contracts, based on wagmi abitype",
"main": "./dist/index.js",
"bin": {
"generate": "./dist/generate.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build",
"generate": "npm run build && node dist/generate.js",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vitest typecheck",
"format": "rome format . --write"
},
"files": ["dist"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/keep-starknet-strange/abi-wan-kanabi.git"
},
"keywords": ["abi", "cairo"],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keep-starknet-strange/abi-wan-kanabi/issues"
},
"homepage": "https://github.com/keep-starknet-strange/abi-wan-kanabi#readme",
"publishConfig": {
"ivpavici:registry": "https://npm.pkg.github.com"
},
"dependencies": {
"ansicolors": "^0.3.2",
"cardinal": "^2.1.1",
"fs-extra": "^10.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/ansicolors": "^0.0.37",
"@types/cardinal": "^2.1.1",
"@types/fs-extra": "^11.0.1",
"@types/yargs": "^17.0.24",
"vitest": "^0.30.1",
"rome": "^12.1.3",
"typescript": "^5.2.2"
}
}