-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 KB
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": "@0xsquid/squid-types",
"version": "0.1.225",
"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)\""
},
"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",
"dependencies": {
"long": "^5.2.4"
},
"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",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.3.3"
}
}