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
40 lines
824 B
Plaintext
40 lines
824 B
Plaintext
{
|
|
"name": "@medv/finder",
|
|
"version": "4.0.2",
|
|
"description": "CSS Selector Generator",
|
|
"type": "module",
|
|
"main": "finder.js",
|
|
"types": "finder.d.ts",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js"
|
|
],
|
|
"scripts": {
|
|
"fmt": "prettier --write finder.ts",
|
|
"fmt:check": "prettier --check finder.ts",
|
|
"build": "tsc",
|
|
"test": "tsc && vitest"
|
|
},
|
|
"devDependencies": {
|
|
"css.escape": "^1.5.1",
|
|
"jsdom": "^25.0.1",
|
|
"prettier": "^3.4.2",
|
|
"typescript": "5.7.2",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"endOfLine": "lf"
|
|
},
|
|
"author": "Anton Medvedev <anton@medv.io>",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/antonmedv/finder",
|
|
"repository": "antonmedv/finder",
|
|
"keywords": [
|
|
"css",
|
|
"selector",
|
|
"generator"
|
|
]
|
|
}
|