-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1000 Bytes
/
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
{
"name": "rwdot",
"version": "0.0.5",
"description": "A RWD tool designed for Tailwind CSS development.",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"dev": "ladle serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"tailwind",
"tailwindcss",
"rwd"
],
"author": "Ho Yi Wei <@davidho0403>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidho0403/rwdot.git"
},
"bugs": {
"url": "https://github.com/davidho0403/rwdot/issues"
},
"files": [
"dist"
],
"devDependencies": {
"@ladle/react": "^2.16.1",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"prettier": "3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
}
}