-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.42 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
40
41
{
"name": "ui",
"version": "0.0.1",
"private": true,
"license": "MIT",
"type": "module",
"author": {
"name": "Preskok"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:preskok": "turbo --filter=preskok build",
"build:preskok:registry": "turbo --filter=preskok registry:build",
"build:registry": "pnpm --filter=preskok registry:build && pnpm lint:fix && pnpm format:write",
"registry:build": "pnpm --filter=preskok registry:build && pnpm lint:fix && pnpm format:write",
"dev": "turbo run dev",
"preskok:dev": "turbo --filter=preskok dev",
"preskok": "pnpm --filter=preskok dev",
"preskok:build": "pnpm --filter=preskok build",
"lint": "oxlint apps packages --quiet",
"lint:all": "oxlint apps packages",
"lint:fix": "oxlint apps packages --fix",
"preview": "turbo run preview",
"preview:preskok": "turbo --filter=preskok preview",
"typecheck": "turbo run typecheck",
"format:write": "oxfmt \"apps/preskok/**/*.{ts,tsx,mdx}\" \"packages/**/*.{js,mjs,cjs,ts,tsx}\"",
"format:check": "oxfmt \"apps/preskok/**/*.{ts,tsx,mdx}\" \"packages/**/*.{js,mjs,cjs,ts,tsx}\" --check",
"check": "pnpm lint && pnpm typecheck && pnpm format:check"
},
"packageManager": "pnpm@11.5.1",
"devDependencies": {
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"oxlint-tsgolint": "^7.0.2001",
"turbo": "^2.9.18"
}
}