-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 2.03 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
{
"name": "@once-upon/evm-context",
"version": "1.0.48",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"grab:transaction": "npm run build && node ./dist/commands/main.js grab-transaction",
"create:contextualizer": "npm run build && node ./dist/commands/main.js create-contextualizer",
"run:contextualizers": "npm run build && node ./dist/commands/main.js run-contextualizers",
"grab:block": "npm run build && node ./dist/commands/main.js grab-block",
"detect:contextualizers": "npm run build && node ./dist/commands/main.js detect-contextualizers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Once-Upon/context.git"
},
"keywords": [
"ethereum",
"transaction"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Once-Upon/context/issues"
},
"homepage": "https://github.com/Once-Upon/context#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"axios": "^1.6.8",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"handlebars": "^4.7.8",
"op-viem": "^1.1.1",
"path": "^0.12.7",
"viem": "^1.19.13"
}
}