-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 892 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 892 Bytes
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
{
"name": "theme-up",
"version": "1.0.0-rc.4",
"description": "🎨 Easy and persistent theming using the React Context API & CSS variables",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --skipLibCheck",
"lint": "tslint -c tslint.json 'src/**/*.ts{,x}'"
},
"keywords": [
"css variables",
"theme",
"theming"
],
"author": "Mike Duister",
"license": "MIT",
"homepage": "https://github.com/MikeDuister/theme-up#readme",
"bugs": {
"url": "https://github.com/MikeDuister/theme-up/issues"
},
"repository": {
"type" : "git",
"url" : "https://github.com/MikeDuister/theme-up.git"
},
"dependencies": {
"react": "^16.8.6",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@types/react": "^16.8.15",
"@types/styled-components": "^4.1.14",
"tslint": "^5.16.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5"
}
}