-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.25 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
{
"name": "theme-change",
"version": "3.0.4",
"description": "Change CSS theme with toggle, buttons or select using CSS Variables and localStorage",
"keywords": [
"javascript",
"theming",
"theme",
"css"
],
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.mjs"
},
"./btn": {
"types": "./btn.d.ts",
"default": "./btn.mjs"
},
"./select": {
"types": "./select.d.ts",
"default": "./select.mjs"
},
"./toggle": {
"types": "./toggle.d.ts",
"default": "./toggle.mjs"
}
},
"types": "index.d.ts",
"files": [
"index.js",
"index.mjs",
"toggle.js",
"toggle.mjs",
"select.js",
"select.mjs",
"btn.js",
"btn.mjs",
"index.d.ts",
"btn.d.ts",
"select.d.ts",
"toggle.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/saadeghi/theme-change.git"
},
"author": "Pouya Saadeghi",
"license": "MIT",
"bugs": {
"url": "https://github.com/saadeghi/theme-change/issues"
},
"homepage": "https://github.com/saadeghi/theme-change#readme",
"devDependencies": {
"esbuild": "^0.28.1"
},
"scripts": {
"build": "node build.mjs"
},
"dependencies": {}
}