-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.19 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": "@openzeppelin/ui-react",
"version": "3.0.1",
"private": false,
"description": "Core React context providers and hooks for the OpenZeppelin UI ecosystem.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"prepublishOnly": "[ \"$SKIP_PUBLISH_BUILD\" = \"true\" ] || pnpm run build",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --passWithNoTests",
"lint": "eslint \"src/**/*.{ts,tsx}\" --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\""
},
"keywords": [
"react",
"hooks",
"context",
"blockchain",
"form",
"typescript",
"openzeppelin"
],
"author": "OpenZeppelin",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenZeppelin/openzeppelin-ui",
"directory": "packages/react"
},
"dependencies": {
"@openzeppelin/ui-types": "workspace:^",
"@openzeppelin/ui-components": "workspace:^",
"@openzeppelin/ui-utils": "workspace:^",
"lucide-react": "^0.510.0"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.19.15",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"jsdom": "^26.1.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript": "^5.8.3",
"vitest": "^4.1.0"
}
}