-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 715 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 715 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
{
"name": "@tailwindcss-variable-colors/monorepo",
"version": "0.1.0",
"private": true,
"description": "My awesome typescript library",
"packageManager": "pnpm@8.3.1",
"scripts": {
"build": "pnpm -r --parallel run build",
"dev": "pnpm -r --parallel run dev",
"test": "vitest",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"devDependencies": {
"bumpp": "^9.1.0",
"vitest": "0.30.1"
},
"pnpm": {
"patchedDependencies": {
"postcss-prune-var@1.0.4": "patches/postcss-prune-var@1.0.4.patch"
}
}
}