-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.85 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.85 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
{
"name": "@bquery/ui",
"version": "1.1.0",
"description": "Production-grade web component library for the bQuery project",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist-types/index.d.ts",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"keywords": [
"bquery",
"ui",
"component-library",
"ui-library",
"web-components",
"custom-elements",
"shadow-dom",
"design-system",
"design-tokens",
"framework-agnostic",
"typescript",
"accessible-components",
"a11y"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist-types/index.d.ts"
},
"./components/*": {
"import": "./dist/components/*.js",
"types": "./dist-types/components/*/index.d.ts"
},
"./tokens": {
"import": "./dist/tokens/index.js",
"types": "./dist-types/tokens/index.d.ts"
},
"./theme": {
"import": "./dist/theme/index.js",
"types": "./dist-types/theme/index.d.ts"
},
"./i18n": {
"import": "./dist/i18n/index.js",
"types": "./dist-types/i18n/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist-types/utils/index.d.ts"
},
"./register": {
"import": "./dist/register.js",
"types": "./dist-types/register.d.ts"
}
},
"sideEffects": [
"./dist/index.js",
"./dist/index.cjs",
"./dist/register.js",
"./dist/register.cjs",
"./dist/components/*.js",
"./dist/components/*.cjs",
"./dist/component-*.js",
"./dist/component-*.cjs"
],
"files": [
"dist",
"dist-types",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "npm run build:lib && npm run build:cdn && npm run build:types",
"build:lib": "vite build",
"build:cdn": "vite build --config vite.cdn.config.ts",
"build:types": "tsc --emitDeclarationOnly --outDir dist-types",
"build:docs": "vitepress build docs",
"dev:docs": "vitepress dev docs",
"test": "bun test",
"lint:types": "tsc --noEmit",
"clean": "rm -rf dist dist-types docs/.vitepress/dist docs/.vitepress/cache",
"storybook": "storybook dev --port 6006",
"build:storybook": "storybook build --output-dir storybook-static"
},
"peerDependencies": {
"@bquery/bquery": "^1.6.0"
},
"devDependencies": {
"@bquery/bquery": "^1.6.0",
"@storybook/addon-docs": "^10.3.3",
"@storybook/web-components-vite": "^10.3.3",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.0",
"autoprefixer": "^10.4.27",
"bun-types": "^1.3.11",
"happy-dom": "^20.8.8",
"postcss": "^8.5.8",
"storybook": "^10.3.3",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^8.0.2",
"vite-plugin-dts": "^4.5.4",
"vitepress": "^1.6.4"
}
}