-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.61 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.61 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
{
"name": "@exactly/lib",
"version": "0.1.0",
"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 --reporter-hide-prefix /test:/",
"test:vi": "vitest run",
"test:ts:lib": "tsc --pretty $([ \"$GITHUB_ACTIONS\" = true ] && echo false || echo true)",
"test:ts:dev": "tsc -p tsconfig.dev.json --pretty $([ \"$GITHUB_ACTIONS\" = true ] && echo false || echo true)",
"test:sol": "forge fmt --check",
"test:spell": "cspell --gitignore '**' '.changeset/**' '.cursor/**' '.github/**' '.eslintrc.*'",
"test:markdown": "markdownlint '**/*.md' '**/*.mdx' '.changeset/**/*.md' '.cursor/**/*.mdc'",
"test:changeset": "changeset status --since origin/main",
"test:lint": "eslint --max-warnings 0 ."
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.6",
"@changesets/types": "^6.1.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@eslint/js": "^9.34.0",
"@exactly/protocol": "^0.2.21",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.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": "^24.3.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.8",
"@vitest/ui": "^3.2.4",
"@wagmi/cli": "^2.5.1",
"cspell": "^9.2.1",
"eslint": "^9.34.0",
"eslint-config-universe": "^15.0.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-unicorn": "^60.0.0",
"execa": "^9.6.0",
"fast-check": "^4.3.0",
"forge-std": "foundry-rs/forge-std#v1.10.0",
"globals": "^16.3.0",
"markdownlint-cli": "^0.45.0",
"prettier": "^3.6.2",
"prool": "^0.0.24",
"solmate": "transmissions11/solmate#v7",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"valibot": "^1.1.0",
"viem": "^2.37.3",
"vitest": "^3.2.4"
},
"pnpm": {
"patchedDependencies": {
"eslint-config-universe": "patches/eslint-config-universe.patch"
}
}
}