-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "react-style-stringify",
"version": "1.1.0",
"description": "A utility for converting React CSSProperties and style maps into CSS strings, designed to simplify the management of inline styles in HTML email templates and React projects.",
"keywords": [
"css",
"css-string",
"css-in-js",
"react-style",
"style-objects"
],
"license": "MIT",
"author": "Artem Karlov",
"homepage": "https://github.com/arkarlov/react-style-stringify#readme",
"repository": {
"type": "git",
"url": "https://github.com/arkarlov/react-style-stringify.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup",
"test": "vitest --config vitest.config.ts"
},
"dependencies": {
"@emotion/unitless": "^0.10.0"
},
"devDependencies": {
"@types/react": "^18.3.5",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=14.0.0"
}
}