-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 732 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 732 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": "use-color-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for use-color - Type-safe CSS colors for TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/junhoyeo/use-color.git"
},
"author": "Junho Yeo <hanaro0704@gmail.com>",
"license": "MIT",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"test:coverage": "pnpm -r test:coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.4"
}