initial commit
Some checks failed
CodeQL / Analyze (push) Failing after 1m32s

This commit is contained in:
Ludwig Lehnert
2026-01-11 11:08:48 +01:00
commit 0efd3d954b
58 changed files with 19390 additions and 0 deletions

92
package.json Normal file
View File

@@ -0,0 +1,92 @@
{
"name": "@sortsys/ui",
"version": "0.1.9",
"description": "Simple and beautiful UI library for sortsys",
"license": "MIT",
"author": "Ludwig Lehnert",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/stuck-lehnert/sortsys-ui.git"
},
"homepage": "https://github.com/stuck-lehnert/sortsys-ui#readme",
"bugs": {
"url": "https://github.com/stuck-lehnert/sortsys-ui/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
".": {
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./styles/*": "./dist/styles/*"
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"build": "tsup && esbuild src/styles/default.css --minify --outfile=dist/styles/default.css",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "npm run test:client --mode ssr",
"prepublishOnly": "npm run build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"concurrently": "^8.2.2",
"esbuild": "^0.21.3",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^24.0.0",
"prettier": "3.0.0",
"solid-js": "^1.8.17",
"tsup": "^8.0.2",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.6.0"
},
"keywords": [
"solid"
],
"packageManager": "pnpm@9.1.1",
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@solidjs/router": "^0.15.4"
},
"publishConfig": {
"access": "public"
}
}