tailwind-csstree
Version:
CSSTree syntax for parsing Tailwind custom syntax.
80 lines (79 loc) • 1.84 kB
JSON
{
"name": "tailwind-csstree",
"version": "0.1.2",
"description": "CSSTree syntax for parsing Tailwind custom syntax.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"!(*.js)": [
"prettier --write --ignore-unknown"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/ tests/",
"fmt": "prettier --write .",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test:unit": "mocha tests/*.{js,mjs} --exit --forbid-only",
"test:jsr": "npx jsr@latest publish --dry-run",
"test:attw": "attw --pack --profile esm-only",
"test": "npm run test:unit && npm run test:attw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/tailwind-csstree.git"
},
"keywords": [
"csstree",
"tailwind",
"tailwindcss",
"css",
"css-tree"
],
"author": "Nicholas C. Zaks",
"license": "Apache-2.0",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@eslint/css": "^0.8.1",
"@eslint/css-tree": "^3.6.0",
"@eslint/js": "^9.0.0",
"@tsconfig/node16": "^16.1.1",
"@types/mocha": "^10.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.26.0",
"lint-staged": "15.4.3",
"mocha": "^11.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"yorkie": "2.0.0"
}
}