-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1001 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1001 Bytes
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
{
"name": "react-theme-select",
"version": "0.0.0",
"description": "Reusable React theme picker component.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "pnpm run build:ts && pnpm run build:css",
"build:ts": "tsc -p tsconfig.build.json",
"build:css": "node scripts/copy-css.mjs",
"screenshots": "node scripts/capture-screenshots.mjs",
"prepack": "pnpm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.24.0",
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"playwright": "^1.57.0",
"typescript": "^5.9.3"
}
}