-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.94 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "driftguard",
"version": "0.1.0",
"description": "Cross-layer drift detection for Web3 contracts, SDKs, docs, and demos. CLI + GitHub Action.",
"main": "./dist/index.js",
"scripts": {
"build": "npm run build:cli",
"build:cli": "tsup && tsc -p tsconfig.build.json",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test:watch": "vitest",
"clean": "rm -rf dist dist-action coverage .driftguard",
"test": "vitest run",
"build:dts": "tsc -p tsconfig.build.json"
},
"keywords": [
"drift",
"docs",
"abi",
"solidity",
"typescript",
"sdk",
"web3",
"ci",
"github-action",
"developer-experience"
],
"author": "",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@solidity-parser/parser": "^0.20.2",
"clipanion": "^4.0.0-rc.4",
"cosmiconfig": "^9.0.1",
"ethers": "^6.16.0",
"execa": "^9.6.1",
"globby": "^16.2.0",
"jiti": "^2.6.1",
"package-manager-detector": "^1.6.0",
"picocolors": "^1.1.1",
"picomatch": "^4.0.4",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"solc": "^0.8.35",
"ts-morph": "^28.0.0",
"typescript": "^6.0.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/picomatch": "^4.0.3",
"tsup": "^8.5.1",
"vitest": "^4.1.5"
},
"types": "./dist/index.d.ts",
"bin": {
"driftguard": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/driftguard/driftguard.git"
},
"bugs": {
"url": "https://github.com/driftguard/driftguard/issues"
},
"homepage": "https://github.com/driftguard/driftguard#readme"
}