cssrxp
Version:
RegExp pattern library for simple CSS related string matching
55 lines (54 loc) • 1.35 kB
JSON
{
"name": "cssrxp",
"version": "1.1.2",
"description": "RegExp pattern library for simple CSS related string matching",
"author": "NOuSantx <nousantx@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nousantx/cssrxp#readme",
"keywords": [
"css",
"regexp",
"css-value",
"css-pattern"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nousantx/cssrxp.git"
},
"bugs": {
"url": "https://github.com/nousantx/cssrxp/issues"
},
"files": [
"./dist",
"index.d.ts",
"package.json",
"README.md",
"LICENSE"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"browser": "./dist/index.iife.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"build:prod": "pnpm type:check && pnpm build --minify && pnpm type:build",
"type:check": "tsc --noEmit",
"type:build": "tsc --declaration --emitDeclarationOnly --outDir dist",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"typescript": "^5.7.3",
"vite": "^6.2.3",
"vitest": "^3.2.1"
},
"packageManager": "pnpm@10.11.0"
}