-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "react-windstorm",
"description": "React Windstorm will create a Tailwind CSS theme provider which allows for quickly creating a Tailwind CSS theme for your React pages or components.",
"author": "Luke Watts",
"version": "0.1.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lukewatts/react-windstorm.git"
},
"private": false,
"main": "dist/createTheme.js",
"module": "dist/createTheme.js",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "yarn rimraf dist",
"preversion": "yarn build",
"build": "tsc",
"test": "jest",
"publish": "npm run prebuild && npm run build && npm publish"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@jest/globals": "^29.5.0",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.35",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.9.3"
}
}