-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 917 Bytes
/
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
{
"name": "styled-native-kit",
"version": "1.1.3",
"description": "Add functionality to styled-components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"deploy": "tsc && npm publish"
},
"homepage": "https://github.com/Saschamz/styled-native-kit",
"author": "Sascha Ringström",
"repository": {
"type": "git",
"url": "git@github.com:Saschamz/styled-native-kit.git"
},
"files": [
"dist"
],
"keywords": [
"styled-components",
"react-native",
"kit",
"bootstrap",
"foundation"
],
"license": "MIT",
"dependencies": {
"styled-components": "^4.3.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"styled-components": "*"
},
"devDependencies": {
"@types/node": "^12.6.9",
"@types/styled-components": "^4.1.19",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}