-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "svelte-dark-mode",
"version": "2.1.0",
"license": "MIT",
"description": "Support dark mode in your Svelte apps",
"author": "Eric Liu (https://github.com/metonym)",
"svelte": "./src/index.js",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./src/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "rollup -cw",
"predeploy": "rollup -c",
"deploy": "npx gh-pages -d dist",
"prepack": "BUNDLE=true rollup -c",
"check": "svelte-check --workspace tests",
"test": "vitest"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.49",
"@testing-library/svelte": "^3.1.3",
"@testing-library/user-event": "^14.2.1",
"jsdom": "^20.0.0",
"svelte": "^3.48.0",
"svelte-check": "^2.8.0",
"svelte-preprocess": "^4.10.7",
"svelte-readme": "^3.6.3",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svelte-dark-mode.git"
},
"homepage": "https://github.com/metonym/svelte-dark-mode",
"bugs": "https://github.com/metonym/svelte-dark-mode/issues",
"keywords": [
"svelte",
"svelte component",
"dark mode",
"theme",
"prefers color scheme",
"local storage",
"persist"
],
"files": [
"lib",
"src"
]
}