-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"private": true,
"type": "module",
"version": "0.0.4",
"author": "wnhlee <2wheeh@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.27.0",
"repository": {
"type": "git",
"url": "https://github.com/2wheeh/react-virtual-masonry"
},
"scripts": {
"check-ci": "pnpm build && pnpm check-types",
"bump": "taze -r -w && pnpm install",
"format": "prettier --write .",
"lint": "oxlint",
"prepare": "husky",
"dev": "turbo run dev --filter=demo",
"build": "turbo run build --filter=demo",
"check-types": "turbo run check-types",
"release": "turbo run build --filter=react-virtual-masonry && changeset publish",
"docs:dev": "turbo run dev --filter=docs",
"docs:build": "turbo run build --filter=docs",
"docs:preview": "turbo run preview --filter=docs"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"oxlint": "^1.39.0",
"prettier": "^3.7.4",
"taze": "^19.9.2",
"turbo": "^2.7.3"
}
}