-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.44 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
{
"name": "tailbreeze",
"description": "CSS-in-JS convenience values and presets on top of Glamor for use when styling React apps",
"version": "0.9.0",
"exports": {
".": {
"types": "./build/types/index.d.ts",
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js",
"default": "./build/esm/index.js"
}
},
"scripts": {
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && echo '{\"type\": \"commonjs\"}' > ./build/cjs/package.json && echo '{\"type\": \"module\"}' > ./build/esm/package.json",
"build:clean": "rm -rf ./build",
"build": "npm-run-all build:clean compile && node ./scripts/prepare-package-json",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinshaw/tailbreeze.git"
},
"keywords": ["glamor", "css-in-js", "react", "tailwind", "tailwindcss", "tailbreeze"],
"author": "Martin Shaw <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/martinshaw/tailbreeze/issues"
},
"homepage": "https://github.com/martinshaw/tailbreeze#readme",
"devDependencies": {
"@types/node": "^20.10.8",
"npm-run-all": "^4.1.5",
"typescript": "^5.3.3",
"@types/lodash": "^4.14.197"
},
"dependencies": {
"glamor": "^2.20.40",
"lodash": "^4.17.21",
"react-responsive": "^9.0.2"
}
}