-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "theme-switch-listener",
"version": "0.0.3",
"description": "Dispatches an event when system theme has been changed",
"main": "lib/switcher.js",
"directories": {
"lib": "src"
},
"files": [
"dist", "lib"
],
"bugs": {
"url": "https://github.com/grafitto/theme-switcher/issues",
"email": "nderitukelvin19@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafitto/theme-switcher.git"
},
"scripts": {
"test": "npm test",
"build": "rm -rf dist lib && npm run build:node && npm run build:umd",
"build:umd": "webpack --mode=production",
"build:node": "tsc"
},
"keywords": [
"Theme",
"switcher"
],
"author": "Kevin Nderitu <nderitukelvin19@gmail.com>",
"homepage": "https://github.com/grafitto/theme-switcher/blob/master/README.md",
"license": "MIT",
"dependencies": {
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}