-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "darkify-js",
"version": "1.1.4",
"description": "A simple dark mode toggle library",
"type": "module",
"main": "dist/darkify.cjs.js",
"module": "dist/darkify.esm.js",
"types": "dist/darkify.d.ts",
"files": [
"dist/darkify.d.ts",
"dist/darkify.cjs.js",
"dist/darkify.esm.js",
"dist/darkify.umd.js",
"dist/darkify.min.js"
],
"scripts": {
"_cls": "rm -rf dist",
"_bundle": "rollup -c rollup.config.ts --configPlugin typescript",
"prettier": "prettier --write src/",
"build": "npm run _cls && npm run _bundle"
},
"keywords": [
"color-scheme",
"toggle",
"dark-mode",
"dark-theme"
],
"author": "Emilio Romero <emrocode@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/emrocode/darkify-js"
},
"homepage": "https://github.com/emrocode/darkify-js#readme",
"bugs": {
"url": "https://github.com/emrocode/darkify-js/issues"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "^3.2.5",
"rollup": "^4.18.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}