-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.54 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@quantinuum/quantinuum-ui",
"version": "1.0.0",
"description": "Quantinuum design tokens and React components",
"private": false,
"author": {
"name": "Aidan Keay",
"email": "aidan.keay@quantinuum.com"
},
"packageManager": "pnpm@11.0.8",
"sideEffects": false,
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "rm -rf ./dist && rollup -c && storybook build && cp ./dist/src/utils/syncTheme.js ./storybook-static/syncTheme.js",
"lint": "tsc && eslint src",
"test": "vitest run",
"test:watch": "vitest",
"check": "npx tsc -b",
"build": "rm -rf ./dist && rollup -c && rm -rf ./dist/node_modules",
"prepare": "husky"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"tag": "latest",
"access": "public"
},
"files": [
"dist",
"!dist/node_modules"
],
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./tokens.css": "./dist/tokens.css"
},
"types": "./dist/types/index.d.ts",
"mode": "production",
"repository": {
"type": "git",
"url": "git+https://github.com/Quantinuum/quantinuum-ui.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Quantinuum/quantinuum-ui/issues"
},
"homepage": "https://github.com/Quantinuum/quantinuum-ui#readme",
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@eslint/compat": "^2.0.2",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-links": "^10.3.5",
"@storybook/addon-onboarding": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@tailwindcss/typography": "^0.5.20",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.16",
"date-fns": "^3.6.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-storybook": "10.3.5",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"postcss": "^8.4.32",
"prop-types": "^15.8.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rollup": "^2.79.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-preserve-directives": "^0.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-scss": "^3.0.0",
"semantic-release": "^24.2.5",
"storybook": "^10.3.5",
"tailwindcss": "^3.4.19",
"typescript": "^6.0.2",
"vite": "^8.0.16",
"vitest": "^4.1.7"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"input-otp": "^1.4.1",
"radix-ui": "^1.5.0",
"react-day-picker": "^8.10.2",
"sonner": "^2.0.1",
"tailwind-merge": "^2.6.1"
},
"peerDependencies": {
"@hookform/resolvers": "^3.9.0",
"@tailwindcss/typography": "^0.5.20",
"@tanstack/react-table": "^8.11.0",
"lucide-react": "^0.468.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.50.1",
"react-icons": "^5.3.0",
"tailwindcss": "^3.4.15",
"zod": "^3.25.56"
}
}