mirror of
https://github.com/antebudimir/eslint-plugin-vanilla-extract.git
synced 2025-12-31 17:03:32 +00:00
feat 🥁: initialize project with complete codebase
This commit is contained in:
commit
d569dea1fb
35 changed files with 4413 additions and 0 deletions
75
package.json
Normal file
75
package.json
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
{
|
||||
"name": "@antebudimir/eslint-plugin-vanilla-extract",
|
||||
"version": "1.0.0",
|
||||
"description": "ESLint plugin for enforcing CSS ordering in vanilla-extract styles",
|
||||
"author": "Ante Budimir",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"eslint",
|
||||
"eslintplugin",
|
||||
"eslint-plugin",
|
||||
"vanilla-extract",
|
||||
"css",
|
||||
"css-in-js",
|
||||
"concentric",
|
||||
"alphabetical",
|
||||
"typescript",
|
||||
"style",
|
||||
"ordering",
|
||||
"zero-runtime"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/antebudimir/eslint-plugin-vanilla-extract.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/antebudimir/eslint-plugin-vanilla-extract/issues"
|
||||
},
|
||||
"homepage": "https://github.com/antebudimir/eslint-plugin-vanilla-extract#readme",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts"
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"format": "prettier --write .",
|
||||
"lint": "eslint src --ext .ts --fix --max-warnings 0",
|
||||
"prepublishOnly": "pnpm run lint && pnpm run build",
|
||||
"publish": "pnpm publish --access public",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"version:major": "pnpm version major --no-git-tag-version",
|
||||
"version:minor": "pnpm version minor --no-git-tag-version",
|
||||
"version:patch": "pnpm version patch --no-git-tag-version"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.18.3"
|
||||
},
|
||||
"packageManager": "pnpm@10.5.0",
|
||||
"peerDependencies": {
|
||||
"eslint": ">=9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/eslintrc": "^3.3.0",
|
||||
"@types/node": "^20.17.19",
|
||||
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
||||
"@typescript-eslint/parser": "^8.25.0",
|
||||
"@typescript-eslint/utils": "^8.25.0",
|
||||
"@vanilla-extract/css": "^1.17.1",
|
||||
"@vanilla-extract/recipes": "^0.5.5",
|
||||
"eslint": "^9.21.0",
|
||||
"eslint-config-prettier": "^10.0.2",
|
||||
"eslint-import-resolver-typescript": "^3.8.3",
|
||||
"eslint-plugin-eslint-plugin": "^6.4.0",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"prettier": "^3.5.2",
|
||||
"typescript": "^5.7.3",
|
||||
"typescript-eslint": "^8.25.0"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue