Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

82 lines
2.1 KiB
JSON

{
"name": "css-select",
"version": "6.0.0",
"description": "a CSS selector compiler/engine",
"author": "Felix Boehm <me@feedic.com>",
"funding": {
"url": "https://github.com/sponsors/fb55"
},
"keywords": [
"css",
"selector",
"sizzle"
],
"repository": {
"type": "git",
"url": "git://github.com/fb55/css-select.git"
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"files": [
"dist",
"src"
],
"dependencies": {
"boolbase": "^1.0.0",
"css-what": "^7.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.2.2",
"nth-check": "^2.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/boolbase": "^1.0.3",
"@types/node": "^24.0.4",
"cheerio-soupselect": "^0.1.1",
"htmlparser2": "^10.0.0",
"tshy": "^3.0.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4"
},
"scripts": {
"test": "vitest run && npm run lint",
"test:vi": "vitest run",
"lint": "npm run lint:biome && npm run lint:tsc",
"lint:biome": "biome check .",
"lint:tsc": "tsc --noEmit",
"format": "biome check --fix .",
"build": "tshy",
"prepare": "npm run build"
},
"license": "BSD-2-Clause",
"tshy": {
"exclude": [
"**/*.spec.ts",
"**/__fixtures__/*",
"**/__tests__/*",
"**/__snapshots__/*",
"test"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"type": "module"
}