-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 760 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 760 Bytes
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
{
"name": "tailwind-plugins",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"dev": "yarn --cwd packages/websites dev",
"lerna:clean": "lerna clean",
"lerna:list": "lerna list",
"lerna:bootstrap": "lerna bootstrap",
"build": "lerna run build --since master --no-private",
"build:all": "lerna run build",
"publish": "npm run build && lerna publish --no-private"
},
"boilerplate": "tailwind-plugins",
"homepage": "https://js.work",
"repository": {
"type": "git",
"url": "https://github.com/afeiship/tailwind-plugins.git"
},
"prettier": "@jswork/style-guide/prettier",
"devDependencies": {
"@jswork/style-guide": "^1.0.2",
"prettier": "^3.2.5"
}
}