Files
klz-cables.com/.pnpm-store/v10/files/35/317722bf70d3d8b4859d1e510ffcaaeb69cdb82db5e624302b4215a97b4c4b15caeb69b916cec9d0f326bd963443017b12b069d656c8bdf0bd00d70f31632e
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

45 lines
1.1 KiB
Plaintext

{
"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"
}
}