-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "@kleros/kleros-app",
"version": "2.0.2",
"description": "Library for Kleros DApps with reusable abstractions and components.",
"repository": "git@github.com:kleros/kleros-v2.git",
"homepage": "https://github.com/kleros/kleros-v2/tree/master/kleros-app#readme",
"author": "Kleros",
"license": "MIT",
"source": "src/lib/index.ts",
"types": "./dist/kleros-app.d.ts",
"module": "./dist/kleros-app.js",
"files": [
"dist"
],
"type": "module",
"volta": {
"node": "20.18.2"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"scripts": {
"clean": "rimraf dist",
"check-style": "eslint 'src/**/*.{ts,tsx}'",
"check-types": "tsc --noEmit",
"start": "vite dev src/",
"build": "yarn clean && vite build",
"release:patch": "scripts/publish.sh patch",
"release:minor": "scripts/publish.sh minor",
"release:major": "scripts/publish.sh major"
},
"prettier": "@kleros/kleros-v2-prettier-config",
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@kleros/kleros-v2-eslint-config": "workspace:^",
"@kleros/kleros-v2-prettier-config": "workspace:^",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.12.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-node-polyfills": "^0.22.0"
},
"dependencies": {
"jose": "^5.9.6"
},
"peerDependencies": {
"@tanstack/react-query": "^5.59.20",
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"viem": "^2.21.42",
"wagmi": "^2.13.5"
}
}