-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.29 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
{
"name": "solid-uix",
"version": "0.6.0",
"type": "module",
"main": "dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"solid": "./dist/main.jsx",
"default": "./dist/main.js"
},
"./dist/main.css": {
"default": "./dist/main.css"
}
},
"files": [
"dist",
"README.md"
],
"workspaces": [
"src-storybook"
],
"peerDependencies": {
"solid-js": "^1.9.5"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.9.2",
"esbuild-plugin-solid": "^0.6.0",
"happy-dom": "^17.4.4",
"tsup": "^8.3.5",
"typescript": "~5.7.2",
"vite": "^6.0.11",
"vite-plugin-solid": "^2.11.6",
"vitest": "^3.1.1"
},
"scripts": {
"build": "tsc --project tsconfig.build.json && tsup",
"test": "vitest run",
"start": "cd src-storybook && npm start"
},
"author": "thorn_pear",
"license": "ISC",
"description": "SolidJS UI components library",
"repository": {
"type": "git",
"url": "https://github.com/tatsmaki/solid-uix.git"
},
"keywords": [
"solid",
"solid-component",
"solid-components",
"components",
"typescript",
"ui"
]
}