-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.74 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
{
"name": "@vlandoss/theme-toggle",
"version": "1.0.0",
"description": "Light/dark/system color-mode toggle for React with a no-flash inline script",
"homepage": "https://github.com/variableland/theme-toggle#readme",
"bugs": {
"url": "https://github.com/variableland/theme-toggle/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/variableland/theme-toggle.git"
},
"license": "MIT",
"author": "rcrd <rcrd@variable.land>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist",
"src",
"!src/**/__tests__",
"!src/**/*.test.*",
"tsconfig.json"
],
"scripts": {
"prepublishOnly": "rr pack",
"test": "rr test run"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@rrlab/biome-config": "^0.0.2",
"@rrlab/biome-plugin": "^1.1.1",
"@rrlab/cli": "^1.3.0",
"@rrlab/oxc-plugin": "^1.1.1",
"@rrlab/ts-config": "^0.0.2",
"@rrlab/tsdown-config": "^0.1.0",
"@rrlab/tsdown-plugin": "^1.1.1",
"@rrlab/vitest-plugin": "^0.1.0",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.0",
"@vitest/browser": "4.1.9",
"@vitest/browser-playwright": "4.1.9",
"lefthook": "^2.1.9",
"oxlint": "^1.0.0",
"oxlint-tsgolint": "^0.23.0",
"playwright": "1.61.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.0.0",
"vitest-browser-react": "2.2.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"packageManager": "pnpm@10.6.4"
}