-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.37 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.37 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
{
"name": "@travelopia/react-components",
"version": "0.1.1",
"description": "Headless React components library focused on INP performance",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint:format": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint:format && npm run typecheck && npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"components",
"headless",
"typescript",
"accessibility",
"a11y",
"inp",
"performance"
],
"author": "Travelopia",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"clsx": "^2.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@storybook/addon-docs": "^9.1.10",
"@storybook/addon-onboarding": "^9.1.10",
"@storybook/react-vite": "^9.1.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.7.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"jsdom": "^27.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^9.1.10",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Travelopia/react-components.git"
},
"bugs": {
"url": "https://github.com/Travelopia/react-components/issues"
},
"homepage": "https://github.com/Travelopia/react-components#readme",
"sideEffects": false,
"engines": {
"node": ">=18"
}
}