@sortsys/ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +38 -0
- package/dist/dev.js +2022 -0
- package/dist/dev.jsx +3489 -0
- package/dist/index.d.ts +367 -0
- package/dist/index.js +2022 -0
- package/dist/index.jsx +1601 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sortsys/ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Simple and beautiful UI library for sortsys",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Ludwig Lehnert",
|
|
7
|
+
"contributors": [],
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/stuck-lehnert/sortsys-ui.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/stuck-lehnert/sortsys-ui#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/stuck-lehnert/sortsys-ui/issues"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"private": false,
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"type": "module",
|
|
22
|
+
"main": "./dist/index.js",
|
|
23
|
+
"module": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"browser": {},
|
|
26
|
+
"exports": {
|
|
27
|
+
"solid": {
|
|
28
|
+
"development": "./dist/dev.jsx",
|
|
29
|
+
"import": "./dist/index.jsx"
|
|
30
|
+
},
|
|
31
|
+
"development": {
|
|
32
|
+
"import": {
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"default": "./dist/dev.js"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"import": {
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"default": "./dist/index.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"typesVersions": {},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"dev": "vite serve dev",
|
|
45
|
+
"build": "tsup",
|
|
46
|
+
"test": "concurrently pnpm:test:*",
|
|
47
|
+
"test:client": "vitest",
|
|
48
|
+
"test:ssr": "npm run test:client --mode ssr",
|
|
49
|
+
"prepublishOnly": "npm run build",
|
|
50
|
+
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
|
|
51
|
+
"lint": "concurrently pnpm:lint:*",
|
|
52
|
+
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
|
|
53
|
+
"lint:types": "tsc --noEmit",
|
|
54
|
+
"update-deps": "pnpm up -Li"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"solid-js": "^1.6.0"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@types/node": "^20.12.12",
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
62
|
+
"@typescript-eslint/parser": "^7.9.0",
|
|
63
|
+
"concurrently": "^8.2.2",
|
|
64
|
+
"esbuild": "^0.21.3",
|
|
65
|
+
"esbuild-plugin-solid": "^0.6.0",
|
|
66
|
+
"eslint": "^8.56.0",
|
|
67
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
68
|
+
"eslint-plugin-no-only-tests": "^3.1.0",
|
|
69
|
+
"jsdom": "^24.0.0",
|
|
70
|
+
"prettier": "3.0.0",
|
|
71
|
+
"solid-js": "^1.8.17",
|
|
72
|
+
"tsup": "^8.0.2",
|
|
73
|
+
"tsup-preset-solid": "^2.2.0",
|
|
74
|
+
"typescript": "^5.4.5",
|
|
75
|
+
"vite": "^5.2.11",
|
|
76
|
+
"vite-plugin-solid": "^2.10.2",
|
|
77
|
+
"vitest": "^1.6.0"
|
|
78
|
+
},
|
|
79
|
+
"keywords": [
|
|
80
|
+
"solid"
|
|
81
|
+
],
|
|
82
|
+
"packageManager": "pnpm@9.1.1",
|
|
83
|
+
"engines": {
|
|
84
|
+
"node": ">=18",
|
|
85
|
+
"pnpm": ">=9.0.0"
|
|
86
|
+
},
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@solidjs/router": "^0.15.4"
|
|
89
|
+
},
|
|
90
|
+
"publishConfig": {
|
|
91
|
+
"access": "public"
|
|
92
|
+
}
|
|
93
|
+
}
|