generated from VitorLuizC/typescript-library-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
{
"name": "sandwich-scanner",
"version": "0.1.3",
"description": "Library to detect on-chain sandwich attacks",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"devDependencies": {
"@rollup/plugin-json": "^5.0.0",
"@types/eslint": "^8.4.5",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.186",
"@types/prettier": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rollup": "^2.77.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.6",
"ts-jest-resolver": "^2.0.0",
"typedoc": "^0.23.7",
"typedoc-plugin-markdown": "^3.13.3",
"typescript": "^4.7.4"
},
"scripts": {
"doc": "typedoc src/index.ts",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.js",
"prepublishOnly": "npm run doc && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xnogo/sandwich-scanner.git"
},
"keywords": [
"mev",
"sandwich",
"attack",
"ethereum"
],
"author": {
"name": "0xnogo"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/0xnogo/sandwich-scanner/issues"
},
"homepage": "https://github.com/0xnogo/sandwich-scanner#readme",
"dependencies": {
"axios": "^1.1.2",
"ethers": "^5.7.1",
"lodash": "^4.17.21"
}
}