UNPKG

selderee

Version:

Selectors decision tree - choose matching selectors, fast

53 lines (52 loc) 1.27 kB
{ "name": "selderee", "version": "0.12.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://github.com/sponsors/KillyMXI", "license": "MIT", "exports": { ".": { "import": { "types": "./lib/selderee.d.mts", "default": "./lib/selderee.mjs" }, "require": { "types": "./lib/selderee.d.cts", "default": "./lib/selderee.cjs" } }, "./package.json": "./package.json" }, "type": "module", "main": "./lib/selderee.cjs", "module": "./lib/selderee.mjs", "types": "./lib/selderee.d.cts", "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.13.1" } }