-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "epic-tag",
"description": "Advanced styled components for React.",
"version": "0.0.0-development",
"repository": "github:tobua/epic-tag",
"license": "CC-BY-NC-4.0",
"author": "Matthias Giger",
"scripts": {
"check": "biome check --write .",
"types": "tsc"
},
"dependencies": {
"epic-inline": "^0.11.2",
"logua": "^3.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@happy-dom/global-registrator": "^15.11.0",
"@testing-library/react": "^16.0.1",
"@types/bun": "^1.1.13",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"epic-jsx": "^0.9.3",
"happy-dom": "^15.11.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3",
"zero-configuration": "^0.17.5"
},
"peerDependencies": {
"@types/react": ">= 18",
"react": ">= 18"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"react": {
"optional": true
}
},
"trustedDependencies": [
"zero-configuration"
],
"type": "module",
"sideEffects": false,
"main": "./index.tsx",
"exports": {
".": "./index.tsx"
},
"files": [
"*.ts",
"*.tsx"
],
"keywords": [
"styled",
"component",
"tag",
"react",
"css",
"inline"
],
"publishConfig": {
"provenance": true
},
"configuration": {
"gitignore": "bundle",
"vscode": "biome",
"biome": {
"extends": "recommended",
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "off"
}
}
},
"files": {
"ignore": [
"demo"
]
}
},
"typescript": [
{
"extends": "plugin",
"compilerOptions": {
"jsx": "react-jsx"
},
"files": [
"index.tsx"
]
},
{
"extends": "plugin",
"folder": "test",
"compilerOptions": {
"strict": false,
"jsx": "react-jsx",
"paths": {
"react": [
"./../node_modules/epic-jsx"
],
"react/jsx-dev-runtime": [
"./../node_modules/epic-jsx"
]
}
}
}
]
}
}