UNPKG

@tw-enigma/core

Version:

CSS optimization engine for tw-enigma

96 lines 2.58 kB
{ "name": "@tw-enigma/core", "version": "1.0.1", "description": "CSS optimization engine for tw-enigma", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist" ], "keywords": [ "css", "optimization", "tailwind", "performance", "build-tools" ], "author": "Rowan Cardow", "license": "MIT", "homepage": "https://github.com/avocardow/tw-enigma", "repository": { "type": "git", "url": "git+https://github.com/avocardow/tw-enigma.git", "directory": "packages/core" }, "bugs": { "url": "https://github.com/avocardow/tw-enigma/issues" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.12", "chokidar": "^4.0.3", "cli-table3": "^0.6.5", "cosmiconfig": "^9.0.0", "critical": "^7.2.1", "cssnano": "^7.0.7", "domhandler": "^5.0.3", "fuse.js": "^7.0.0", "glob": "^11.0.3", "lru-cache": "^11.1.0", "penthouse": "^2.3.3", "puppeteer": "^24.10.0", "source-map": "^0.7.4", "uuid": "^11.1.0", "write-file-atomic": "^6.0.0", "ws": "^8.18.0", "xxhash-wasm": "^1.1.0", "zlib": "^1.0.5", "zod": "^3.25.67" }, "devDependencies": { "@babel/generator": "^7.27.5", "@babel/parser": "^7.27.5", "@babel/traverse": "^7.27.4", "@babel/types": "^7.27.6", "@types/babel__generator": "^7.27.0", "@types/babel__traverse": "^7.20.7", "@types/write-file-atomic": "^4.0.3", "@types/ws": "^8.18.1", "memfs": "^4.17.2", "postcss": "^8.5.6", "tailwindcss": "^4.1.10" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest run", "test:unit": "vitest run", "test:integration": "vitest run --testNamePattern=\"Integration\"", "test:e2e": "vitest run --testNamePattern=\"E2E\"", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "eslint \"src/**/*.ts\"", "lint:fix": "eslint \"src/**/*.ts\" --fix", "format": "prettier --write \"src/**/*.{ts,js,json}\"", "format:check": "prettier --check \"src/**/*.{ts,js,json}\"", "type-check": "tsc --noEmit", "clean": "rimraf dist", "clean:coverage": "rimraf coverage", "clean:cache": "rimraf node_modules/.cache", "clean:all": "rimraf dist coverage node_modules/.cache" } }