forked from ocavue/astro-theme-toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 KB
/
package.json
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
{
"name": "astro-theme-toggle",
"type": "module",
"version": "0.5.0",
"packageManager": "[email protected]",
"description": "Add a ripple-style theme toggle animation to your Astro project with ease",
"author": "ocavue <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/ocavue",
"homepage": "https://github.com/ocavue/astro-theme-toggle#readme",
"repository": {
"type": "git",
"url": "https://github.com/ocavue/astro-theme-toggle.git"
},
"bugs": "https://github.com/ocavue/astro-theme-toggle/issues",
"keywords": [
"astro",
"withastro",
"astro-component"
],
"sideEffects": false,
"exports": {
".": "./lib/index.ts"
},
"scripts": {
"dev": "astro dev",
"build": "bash build.sh",
"lint": "eslint .",
"fix": "eslint --fix . && prettier --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@astrojs/react": "^3.6.2",
"@astrojs/vue": "^4.5.2",
"@ocavue/eslint-config": "^2.6.0",
"@types/node": "^20.16.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"astro": "^4.15.4",
"astro-expressive-code": "^0.37.0",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"lucide-react": "^0.447.0",
"lucide-vue-next": "^0.447.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"vue": "^3.5.11"
},
"renovate": {
"extends": [
"github>ocavue/config-renovate"
]
}
}