-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.54 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.54 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "brand-shell",
"version": "0.17.0",
"description": "Reusable Header and Footer components with typed details and theme. Premium default UX, works in React, Vite, Next.js.",
"homepage": "https://github.com/venwork-dev/brand-shell#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/venwork-dev/brand-shell.git"
},
"bugs": {
"url": "https://github.com/venwork-dev/brand-shell/issues"
},
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./web": {
"import": "./dist/web.mjs",
"types": "./dist/web.d.mts"
},
"./vue": {
"import": "./dist/vue.mjs",
"types": "./dist/vue.d.mts"
},
"./svelte": {
"svelte": "./src/svelte/index.svelte.ts",
"import": "./dist/svelte.mjs",
"types": "./dist/svelte.d.mts"
},
"./schema": "./dist/brand-shell.schema.json",
"./schema.json": "./dist/brand-shell.schema.json",
"./default.css": "./dist/default.css",
"./dist/default.css": "./dist/default.css"
},
"files": [
"dist",
"src/svelte/BrandHeader.svelte",
"src/svelte/BrandFooter.svelte",
"src/svelte/index.svelte.ts"
],
"scripts": {
"prepare": "bun run build",
"build": "tsdown",
"dev": "tsdown --watch",
"demo:setup:react": "bun install --cwd examples/react-vite",
"demo:setup:vue": "bun install --cwd examples/vue-vite",
"demo:setup:svelte": "bun install --cwd examples/svelte-vite",
"demo:setup:next": "bun install --cwd examples/next-app",
"demo:setup:tanstack": "bun install --cwd examples/tanstack-vite",
"demo:setup": "bun run build && bun run demo:setup:react && bun run demo:setup:vue && bun run demo:setup:svelte && bun run demo:setup:next && bun run demo:setup:tanstack",
"demo:build:react": "bun run --cwd examples/react-vite build",
"demo:build:vue": "bun run --cwd examples/vue-vite build",
"demo:build:svelte": "bun run --cwd examples/svelte-vite build",
"demo:build:next": "bun run --cwd examples/next-app build",
"demo:build:tanstack": "bun run --cwd examples/tanstack-vite build",
"demo:build:all": "bun run build && bun run demo:build:react && bun run demo:build:vue && bun run demo:build:svelte && bun run demo:build:next && bun run demo:build:tanstack",
"demo:dev:react": "bun run build && bun run --cwd examples/react-vite dev",
"demo:dev:vue": "bun run build && bun run --cwd examples/vue-vite dev",
"demo:dev:svelte": "bun run build && bun run --cwd examples/svelte-vite dev",
"demo:dev:next": "bun run build && bun run --cwd examples/next-app dev",
"demo:dev:tanstack": "bun run build && bun run --cwd examples/tanstack-vite dev",
"docs:setup": "bun install --cwd apps/docs",
"docs:dev": "bun run build && bun run --cwd apps/docs dev",
"docs:build": "bun run build && bun run --cwd apps/docs build",
"test": "vitest run",
"test:smoke": "vitest run --config vitest.smoke.config.ts",
"typecheck": "tsc -p tsconfig.check.json --noEmit",
"lint": "bun run typecheck",
"commitlint": "commitlint --config .commitlintrc.cjs --verbose",
"pack:check": "node scripts/check-pack.cjs",
"check": "bun run lint && bun run test && bun run build && bun run pack:check",
"changeset": "bunx @changesets/cli@2.29.7",
"version:packages": "bun run changeset version",
"release:publish": "bun run changeset publish --provenance",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postbuild": "node scripts/copy-css.cjs"
},
"peerDependencies": {
"react": ">=18.0.0",
"svelte": ">=5.0.0",
"vue": ">=3.5.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"svelte": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"ajv": "^8.17.1",
"@types/node": "^22.10.7",
"@types/react": "^18.3.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"svelte": "^5.0.0",
"tsdown": "^0.20.0",
"typescript": "^5.6.3",
"vue": "^3.5.0",
"storybook": "^10.2.8",
"@storybook/react-vite": "^10.2.8",
"@chromatic-com/storybook": "^5.0.1",
"@storybook/addon-vitest": "^10.2.8",
"@storybook/addon-a11y": "^10.2.8",
"@storybook/addon-docs": "^10.2.8",
"vitest": "^4.0.18",
"playwright": "^1.58.2",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18"
},
"license": "MIT"
}