-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.5 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 4.5 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@pathscale/ui",
"version": "1.3.1",
"author": "pathscale",
"repository": {
"type": "git",
"url": "https://github.com/pathscale/ui"
},
"license": "MIT",
"description": "Highly opinionated SolidJS component library — batteries and kitchen sink included, but optimized and shiny.",
"files": [
"dist"
],
"homepage": "https://js.software",
"keywords": [
"solid",
"solidjs",
"solid-js",
"component-library",
"ui",
"ui-components",
"design-system",
"tailwind",
"tailwindcss",
"daisyui",
"headless-ui",
"accessible",
"typescript"
],
"bugs": {
"url": "https://github.com/pathscale/ui/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./components/*": {
"types": "./dist/components/*/index.d.ts",
"import": "./dist/components/*/index.js"
},
"./primitives/*": {
"types": "./dist/primitives/*/index.d.ts",
"import": "./dist/primitives/*/index.js"
},
"./hooks/*": {
"types": "./dist/hooks/*/index.d.ts",
"import": "./dist/hooks/*/index.js"
},
"./motion": {
"types": "./dist/motion/index.d.ts",
"import": "./dist/motion/index.js"
},
"./styles/*": "./dist/styles/*",
"./dist/styles/*": "./dist/styles/*",
"./index.css": "./dist/index.css"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@iconify/json": "^2.2.481",
"@iconify/utils": "^2.3.0",
"@pathscale/rsbuild-plugin-ui-css-purge": "^0.9.11",
"@rsbuild/core": "^2.0.9",
"@rsbuild/plugin-solid": "^1.2.1",
"@rslib/core": "^0.22.0",
"@solid-primitives/event-listener": "^2.4.5",
"@solid-primitives/intersection-observer": "^2.2.4",
"@solid-primitives/keyboard": "^1.3.5",
"@solid-primitives/media": "^2.3.5",
"@solid-primitives/props": "^3.2.3",
"@solid-primitives/resize-observer": "^2.1.5",
"@solid-primitives/scheduled": "^1.5.3",
"@solid-primitives/scroll": "^2.1.5",
"@solid-primitives/storage": "^2.1.4",
"@solid-primitives/utils": "^6.4.0",
"@standard-schema/spec": "^1.1.0",
"@tanstack/solid-form": "^1.33.0",
"@tanstack/solid-table": "^8.21.3",
"@types/bun": "^1.3.14",
"babel-preset-solid": "^1.9.12",
"cally": "^0.8.0",
"clsx": "^2.1.1",
"cssnano": "^7.1.9",
"postcss": "^8.5.15",
"postcss-cli": "^11.0.1",
"postcss-selector-parser": "^7.1.1",
"solid-js": "^1.9.13",
"svgo": "^3.3.3",
"typescript": "^6.0.3"
},
"dependencies": {
"@iconify/tailwind4": "^1.2.3",
"@pathscale/rsbuild-plugin-iconify": "^1.0.4",
"@pathscale/ui": "^1.2.10",
"@tanstack/solid-virtual": "^3.13.27",
"tailwind-merge": "^3.6.0"
},
"peerDependencies": {
"@solid-primitives/event-listener": "^2.3.0",
"@solid-primitives/intersection-observer": "^2.1.3",
"@solid-primitives/keyboard": "^1.2.5",
"@solid-primitives/media": "^2.2.5",
"@solid-primitives/props": "^3.1.8",
"@solid-primitives/resize-observer": "^2.0.22",
"@solid-primitives/scheduled": "^1.4.1",
"@solid-primitives/scroll": "^2.0.20",
"@solid-primitives/storage": "^2.1.1",
"@solid-primitives/utils": "^6.2.1",
"@standard-schema/spec": "^1.0.0",
"@tanstack/solid-form": "^1.29.0",
"@tanstack/solid-table": "^8.0.0",
"popmotion": "^11.0.5",
"solid-js": "^1.9"
},
"peerDependenciesMeta": {
"@standard-schema/spec": {
"optional": true
},
"popmotion": {
"optional": true
}
},
"scripts": {
"build": "bun run scripts/check-contracts.ts && rslib build && bun run postbuild:manifest",
"postbuild:manifest": "bun run node_modules/@pathscale/rsbuild-plugin-ui-css-purge/src/generate-manifest.ts src/components --out dist/purge-manifest.json",
"build:watch": "rslib build --watch",
"dev": "rslib dev",
"preview": "rslib preview",
"clean": "rm -rf dist node_modules",
"format": "bun biome format --write",
"lint": "bun biome lint --write",
"check": "bun run scripts/check-contracts.ts",
"check:package": "bun run scripts/check-package.ts",
"next-version": "bun run scripts/next-version.ts",
"smoke": "bun run scripts/smoke-consumer.ts",
"playground:dev": "cd playground && bun run dev",
"playground:build": "cd playground && bun run build",
"playground:preview": "cd playground && bun run preview"
},
"sideEffects": [
"**/*.css"
],
"type": "module"
}