-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.22 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.22 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
{
"name": "@pathscale/ui",
"version": "1.2.5",
"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://github.com/pathscale/ui",
"keywords": ["solid", "solidjs"],
"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"
},
"./stores": {
"types": "./dist/stores/index.d.ts",
"import": "./dist/stores/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": "1.9.4",
"@iconify/json": "^2.2.342",
"@iconify/utils": "^2.3.0",
"@pathscale/rsbuild-plugin-ui-css-purge": "^0.9.5",
"@rsbuild/core": "^1.3.20",
"@rsbuild/plugin-solid": "^1.0.5",
"@rslib/core": "^0.9.0",
"@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.21.3",
"@types/bun": "^1.2.12",
"babel-preset-solid": "^1.9.6",
"cally": "^0.8.0",
"clsx": "^2.1.1",
"cssnano": "^7.0.7",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"postcss-selector-parser": "^7.1.1",
"solid-js": "^1.9.7",
"svgo": "^3.3.2",
"tailwind-merge": "^3.3.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@iconify/tailwind4": "^1.2.1",
"@pathscale/ui": "^1.1.11",
"@tanstack/solid-virtual": "^3.13.23",
"rsbuild-plugin-iconify": "^1.0.3"
},
"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",
"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"
}