-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 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
50
51
52
{
"name": "scoped-style-components",
"version": "1.0.1",
"description": "Utility React components for scoping CSS with @scope",
"author": "David Burles",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dburles/scoped-style-components.git"
},
"bugs": {
"url": "https://github.com/dburles/scoped-style-components/issues"
},
"homepage": "https://github.com/dburles/scoped-style-components#readme",
"keywords": [
"scope",
"css",
"styles",
"react",
"css-in-js"
],
"type": "module",
"scripts": {
"prepare": "tsc",
"test": "tsc --noEmit",
"prepublishOnly": "npm test"
},
"exports": {
"./Style.js": "./Style.js",
"./StyleLink.js": "./StyleLink.js",
"./package.json": "./package.json"
},
"files": [
"Style.js",
"Style.d.ts",
"Style.js.map",
"StyleLink.js",
"StyleLink.d.ts",
"StyleLink.js.map"
],
"dependencies": {
"react": "^18 || ^19"
},
"peerDependencies": {
"react": "^18 || ^19"
},
"devDependencies": {
"@types/react": "^18.3.12",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}