-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@0xsquid/squid-types",
"version": "0.1.131",
"description": "JS and TS types relating to 0xsquid related projects.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist node_modules",
"lint": "eslint src/ --ext .js,.ts,.json",
"lint:fix": "yarn lint --fix",
"format": "prettier --ignore-path .gitignore --write --log-level error \"**/*.+(js|ts|json)\"",
"release": "release-it",
"release:pre": "release-it --preRelease=beta",
"release:ci": "release-it --ci",
"release:dry": "release-it --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xsquid/squid-types.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typescript",
"types",
"0xsquid",
"squidrouter"
],
"author": "0xsquid",
"license": "Apache-2.0",
"directories": {
"typescript": "^5.3.3"
},
"dependencies": {
"@axelar-network/axelarjs-sdk": "^0.16.1",
"@ethersproject/providers": "^5.7.2",
"typescript": "*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"prettier": "^3.1.1"
},
"peerDependencies": {
"typescript": "^5.3.3"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}