UNPKG

zss-engine

Version:

A CSS-in-JS transpiler engine for building zero-runtime stylesheets at build time.

69 lines (68 loc) 1.62 kB
{ "name": "zss-engine", "version": "2.3.2", "description": "A CSS-in-JS transpiler engine for building zero-runtime stylesheets at build time.", "funding": "https://github.com/sponsors/refirst11", "author": "Refirst 11", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/zss-in-js/zss-engine.git" }, "bugs": { "url": "https://github.com/zss-in-js/zss-engine/issues" }, "keywords": [ "stylesheet", "transpiler", "atomic", "atomic-css", "semantic", "wyw-in-js", "engine", "zero-runtime", "css-in-js", "hash", "codegen", "compiler" ], "sideEffects": false, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", "default": "./dist/cjs/index.js" } }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "files": [ "dist/" ], "scripts": { "prepare": "git config core.hooksPath .githooks", "build": "rimraf dist && pnpm esm && pnpm cjs", "cjs": "tsc --project tsconfig.cjs.json", "esm": "tsc --project tsconfig.esm.json", "test": "jest --coverage" }, "dependencies": { "csstype": "3.2.3" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^25.6.0", "jest": "^30.3.0", "jest-environment-jsdom": "^30.3.0", "prettier": "^3.9.5", "rimraf": "^6.1.2", "ts-jest": "^29.4.9", "typescript": "^6.0.2" }, "publishConfig": { "access": "public", "provenance": true } }