-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.33 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.33 KB
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
{
"name": "@react-symbols/workspace",
"author": "@pheralb_",
"private": true,
"packageManager": "pnpm@10.32.1",
"workspaces": [
"website",
"library"
],
"scripts": {
"sherif": "pnpm dlx sherif@latest",
"fix:sherif": "pnpm dlx sherif@latest --fix",
"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:website": "prettier --write \"website/**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:library": "prettier --write \"library/**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build --filter=@react-symbols/website^... && changeset publish",
"beta:release": "turbo build --filter=@react-symbols/website^... && changeset publish --tag beta"
},
"devDependencies": {
"@changesets/cli": "2.30.0",
"@types/node": "22.19.15",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"turbo": "latest"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
}
}