Projektstart

This commit is contained in:
2026-01-22 15:49:12 +01:00
parent 7212eb6f7a
commit 57e5f652f8
10637 changed files with 2598792 additions and 64 deletions

44
backend/node_modules/selderee/package.json generated vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "selderee",
"version": "0.11.0",
"description": "Selectors decision tree - choose matching selectors, fast",
"keywords": [
"CSS",
"selectors",
"decision tree",
"match"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mxxii/selderee.git"
},
"bugs": {
"url": "https://github.com/mxxii/selderee/issues"
},
"homepage": "https://github.com/mxxii/selderee",
"author": "KillyMXI",
"funding": "https://ko-fi.com/killymxi",
"license": "MIT",
"exports": {
"import": "./lib/selderee.mjs",
"require": "./lib/selderee.cjs"
},
"type": "module",
"main": "./lib/selderee.cjs",
"module": "./lib/selderee.mjs",
"types": "./lib/selderee.d.ts",
"typedocMain": "./src/selderee.ts",
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build:rollup": "rollup -c",
"build:types": "tsc -d --emitDeclarationOnly --declarationDir ./lib",
"build": "npm run clean && npm run build:rollup && npm run build:types",
"clean": "rimraf lib"
},
"dependencies": {
"parseley": "^0.12.0"
}
}