css-what
Version:
a CSS selector parser
58 lines (57 loc) • 1.66 kB
JSON
{
"name": "css-what",
"version": "8.0.0",
"description": "a CSS selector parser",
"repository": {
"type": "git",
"url": "https://github.com/fb55/css-what"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/fb55"
},
"license": "BSD-2-Clause",
"author": "Felix Böhm <me@feedic.com> (http://feedic.com)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"format": "npm run format:es && npm run format:biome",
"format:biome": "biome check --write .",
"format:es": "npm run lint:es -- --fix",
"lint": "npm run lint:tsc && npm run lint:es && npm run lint:biome",
"lint:biome": "biome check .",
"lint:es": "eslint src",
"lint:tsc": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "npm run test:vi && npm run lint",
"test:vi": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@eslint/compat": "^2.0.3",
"@feedic/eslint-config": "^0.3.1",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"eslint-config-biome": "^2.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.19.0"
}
}