-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 988 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
{
"name": "@react-symbols/workspace",
"author": "@pheralb_",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"website",
"library"
],
"scripts": {
"sherif": "pnpm dlx sherif@latest",
"build": "turbo build",
"build:website": "turbo build --filter=@react-symbols/website",
"build:library": "turbo build --filter=@react-symbols/icons",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"lint:website": "turbo lint --filter=@react-symbols/website",
"format": "prettier --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build --filter=@react-symbols/website^... && changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@types/node": "22.8.1",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"turbo": "latest"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
}
}