-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "static-ui",
"version": "0.1.0",
"private": true,
"description": "A modern, multi-framework UI library powered by Base UI, Tailwind CSS, and Turborepo.",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"clean": "turbo clean",
"cli:dev": "pnpm --filter @static-ui/cli dev",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"prepare": "husky",
"knip": "knip",
"syncpack": "syncpack lint",
"syncpack:fix": "syncpack format",
"size": "size-limit",
"validate:registry": "node scripts/validate-registry.mjs",
"registry": "pnpm --filter @static-ui/registry build",
"release": "node scripts/release.mjs",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix --max-warnings=10",
"prettier --write"
],
"*.{json,md,css,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@playwright/test": "^1.60.0",
"@size-limit/esbuild-why": "^12.1.0",
"@size-limit/file": "^12.1.0",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"knip": "^6.16.1",
"lint-staged": "^17.0.7",
"prettier": "^3.2.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"size-limit": "^12.1.0",
"syncpack": "^15.3.1",
"turbo": "^2.0.0",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
},
"keywords": [
"ui",
"components",
"base-ui",
"tailwind",
"shadcn",
"react",
"vue",
"svelte",
"solid",
"astro",
"remix",
"nextjs",
"nuxt"
],
"packageManager": "pnpm@11.5.2",
"repository": {
"type": "git",
"url": "git+https://github.com/Anshul563/static-ui.git"
},
"homepage": "https://staticui.online",
"bugs": {
"url": "https://github.com/Anshul563/static-ui/issues"
},
"author": {
"name": "Anshul Shakya",
"url": "https://github.com/Anshul563"
},
"license": "MIT",
"type": "module"
}