-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.03 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
{
"name": "@adjanour/react-components",
"version": "2.0.0",
"description": "Accessible, framework-agnostic React components with built-in styling",
"type": "module",
"packageManager": "pnpm@10.8.0",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./accordion.css": "./accordion.css",
"./breadcrumbs.css": "./breadcrumbs.css",
"./command-palette.css": "./command-palette.css",
"./skip-link.css": "./skip-link.css",
"./tabs.css": "./tabs.css",
"./table-of-contents.css": "./table-of-contents.css",
"./tooltip.css": "./tooltip.css",
"./styles.css": "./styles.css"
},
"sideEffects": [
"*.css"
],
"files": [
"dist",
"*.css",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md,css}\"",
"typecheck": "tsc --noEmit",
"docs:dev": "astro dev --root docs",
"docs:build": "astro build --root docs",
"docs:preview": "astro build --root docs && astro preview --root docs",
"prepublishOnly": "pnpm typecheck && pnpm lint && pnpm test && pnpm build"
},
"keywords": [
"react",
"components",
"accordion",
"search",
"navigation",
"breadcrumbs",
"command-palette",
"tabs",
"table-of-contents",
"skip-link",
"tooltip",
"ui",
"typescript"
],
"author": "Adjanour <adjanour@icloud.com>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/Adjanour/ReactComponents.git"
},
"bugs": {
"url": "https://github.com/Adjanour/ReactComponents/issues"
},
"homepage": "https://github.com/Adjanour/ReactComponents#readme",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@astrojs/mdx": "^5.0.6",
"@astrojs/react": "^5.0.5",
"@eslint/js": "^9.22.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.1.1",
"astro": "^6.3.7",
"eslint": "^9.22.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sharp": "^0.34.5",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.27.0",
"vitest": "^3.1.1"
}
}