-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.55 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
{
"name": "symbiotic-validator",
"description": "Symbiotic Validator",
"version": "0.0.0",
"author": "Symbiotic",
"type": "module",
"private": true,
"homepage": "https://github.com/symbioticfi/metadata-validation-scripts",
"repository": {
"type": "git",
"url": "git+https://github.com/symbioticfi/metadata-validation-scripts.git"
},
"keywords": [
"symbiotic"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"bundle": "npm run package",
"lint": "eslint .",
"local-action": "cd metadata && local-action ../ src/main.ts ../.env",
"package": "tsup",
"package:watch": "tsup --watch",
"prepare": "husky",
"test": "node --disable-warning=ExperimentalWarning --test test/get-vault-token-address.test.mjs"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"image-js": "^1.2.0",
"json-source-map": "^0.6.1",
"viem": "^2.41.2"
},
"devDependencies": {
"@github/local-action": "^6.0.2",
"@symbiotic/eslint-config": "0.5.1",
"@symbiotic/prettier-config": "^0.0.4",
"@types/node": "^24.10.1",
"eslint": "9.39.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.7.4",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}