-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.71 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
{
"name": "@mrbrunowolff/react-web-components-monorepo",
"version": "1.0.0",
"description": "Monorepo for self-contained React components wrapped as Web Components",
"keywords": [
"bun",
"components",
"design-system",
"flexlayout",
"monorepo",
"react",
"self-contained",
"shadcn",
"ui",
"web-components"
],
"homepage": "https://github.com/MrBrunoWolff/react-web-components#readme",
"bugs": {
"url": "https://github.com/MrBrunoWolff/react-web-components/issues"
},
"license": "MIT",
"author": "Bruno Wolff",
"repository": {
"type": "git",
"url": "git+https://github.com/MrBrunoWolff/react-web-components.git"
},
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "bun run --filter='*' dev",
"build": "bun run --filter='*' build",
"build:lib": "bun run --filter=@mrbrunowolff/react-web-components build:lib",
"showcase:react": "bun run --filter=showcase-react dev",
"showcase:wc": "bun run --filter=showcase-wc dev",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"check": "oxlint --fix && oxfmt",
"check:ci": "bun run --parallel --no-exit-on-error lint format:check",
"typecheck": "bun run --filter=@mrbrunowolff/react-web-components build:types && bun install && bun run --filter='*' typecheck",
"test": "bun run --filter='*' test",
"clean": "bun run --filter='*' clean",
"audit": "bun audit --audit-level=high",
"licenses": "bun pm licenses --prod"
},
"devDependencies": {
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"typescript": "^7.0.2"
},
"engines": {
"bun": ">=1.0.0"
},
"packageManager": "bun@1.4.0"
}