-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "@exactly/lib",
"version": "0.0.1",
"homepage": "https://exact.ly",
"repository": "github:exactly/lib",
"scripts": {
"prepare": "pnpm run --aggregate-output /prepare:/",
"prepare:build": "pnpm build",
"prepare:test": "wagmi generate",
"build": "tsup",
"test": "pnpm run --aggregate-output /test:/",
"test:vi": "vitest run",
"test:ts:lib": "tsc",
"test:ts:dev": "tsc -p tsconfig.dev.json",
"test:lint": "eslint ."
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@exactly/protocol": "exactly/protocol#d683f02",
"@openzeppelin/contracts": "^5.1.0",
"@openzeppelin/contracts-upgradeable": "^5.1.0",
"@openzeppelin/contracts-upgradeable-v4": "npm:@openzeppelin/contracts-upgradeable@^4.9.6",
"@openzeppelin/contracts-v4": "npm:@openzeppelin/contracts@^4.9.6",
"@types/eslint": "^9.6.1",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/eslint-plugin": "^1.1.10",
"@vitest/ui": "^2.1.5",
"@wagmi/cli": "^2.1.18",
"eslint": "maintenance",
"eslint-config-prettier": "^9.1.0",
"eslint-config-universe": "^14.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"execa": "^9.5.1",
"fast-check": "^3.23.1",
"forge-std": "foundry-rs/forge-std#v1.9.4",
"prettier": "^3.3.3",
"prool": "^0.0.16",
"solmate": "transmissions11/solmate#v7",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"valibot": "^0.42.1",
"viem": "^2.21.50",
"vitest": "^2.1.5"
},
"pnpm": {
"patchedDependencies": {
"eslint-config-universe": "patches/eslint-config-universe.patch"
}
}
}