-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (152 loc) · 4.5 KB
/
Copy pathpackage.json
File metadata and controls
152 lines (152 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
148
149
150
151
152
{
"name": "@pathscale/ui",
"version": "3.2.4",
"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",
"solidLayouts": "./dist/layouts.manifest.json",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./lab": {
"types": "./dist/lab.d.ts",
"import": "./dist/lab.js"
},
"./passwordRules": {
"types": "./dist/passwordRules.d.ts",
"import": "./dist/passwordRules.js"
},
"./layouts": "./dist/layouts.manifest.json",
"./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"
},
"./package.json": "./package.json",
"./styles/*": "./dist/styles/*",
"./dist/styles/*": "./dist/styles/*",
"./index.css": "./dist/index.css"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@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",
"@solidjs/h": "^2.0.0-rc.0",
"@solidjs/web": "2.0.0-rc.4",
"@standard-schema/spec": "^1.1.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/bun": "^1.3.14",
"babel-preset-solid": "^2.0.0-rc.0",
"cally": "^0.8.0",
"cssnano": "^7.1.9",
"popmotion": "^11.0.5",
"postcss": "^8.5.15",
"postcss-cli": "^11.0.1",
"postcss-selector-parser": "^7.1.1",
"rsbuild-plugin-solid-layouts": "^0.2.1",
"solid-js": "2.0.0-rc.4",
"solid-layouts": "^0.2.4",
"solid-layouts-oxc": "^0.2.3",
"svgo": "^3.3.3",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3"
},
"overrides": {
"@solidjs/signals": "2.0.0-rc.4",
"babel-preset-solid": "^2.0.0-rc.0"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.6.0"
},
"peerDependencies": {
"@standard-schema/spec": "^1.0.0",
"@solidjs/web": ">=2.0.0-rc.0",
"popmotion": "^11.0.5",
"solid-js": ">=2.0.0-rc.0",
"solid-layouts": "^0.2.4"
},
"peerDependenciesMeta": {
"@standard-schema/spec": {
"optional": true
},
"popmotion": {
"optional": true
}
},
"scripts": {
"build": "bun run check && rslib build && bun run postbuild:manifest",
"layouts:generate": "solid-layouts-library",
"postbuild:manifest": "bun run scripts/generate-purge-manifest.ts",
"build:watch": "rslib build --watch",
"dev": "rslib dev",
"preview": "rslib preview",
"clean": "rm -rf dist node_modules",
"format": "bun biome format --write",
"lint": "bun run lint:code && bun run lint:layouts",
"lint:code": "bun biome lint --write src qa",
"lint:layouts": "solid-layouts-lint",
"check": "bun run layouts:generate && 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",
"qa:checks": "bun run tests/qa-harness/generate-checks.ts",
"qa:entries": "bun run tests/qa-harness/generate-entries.ts",
"qa:dev": "rsbuild dev --config tests/qa-harness/rsbuild.config.ts",
"qa:build": "bun run build && bun run qa:checks && bun run qa:entries && rsbuild build --config tests/qa-harness/rsbuild.config.ts",
"test": "bun test --conditions=browser",
"check:api": "bun run scripts/check-api-contract.ts",
"qa:lint": "bun biome lint tests/qa-harness"
},
"sideEffects": [
"**/*.css"
],
"type": "module"
}