-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 830 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
{
"name": "react-style-kit",
"version": "1.3.0",
"description": "Create and apply dynamic CSS styles easily in React based applications.",
"main": "dist/src/styled.js",
"types": "dist/react-style-kit.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && ncp types/react-style-kit.d.ts dist/react-style-kit.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cosmin-Hodor/react-style-kit.git"
},
"author": "Cosmin Hodor",
"keywords": [
"react",
"css",
"styles",
"css-in-js",
"react styled components"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Cosmin-Hodor/react-style-kit/issues"
},
"homepage": "https://github.com/Cosmin-Hodor/react-style-kit#readme",
"devDependencies": {
"@types/react": "^18.2.37",
"ncp": "^2.0.0",
"typescript": "^5.2.2"
}
}