-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.89 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
{
"name": "@openzeppelin/ui-utils",
"version": "3.3.0",
"private": false,
"description": "Shared, framework-agnostic utility functions 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": [
"utils",
"helpers",
"blockchain",
"form",
"typescript"
],
"author": "OpenZeppelin",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenZeppelin/openzeppelin-ui",
"directory": "packages/utils"
},
"dependencies": {
"@openzeppelin/ui-types": "workspace:^",
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.1",
"uuid": "^14.0.0",
"validator": "^13.15.15"
},
"devDependencies": {
"@types/ga-gtag": "^1.2.0",
"@types/node": "^22.19.15",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.15.2",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vitest": "^4.1.0"
}
}