transform-to-unocss-core
Version:
A utility to transform CSS to UnoCSS syntax. Supports various CSS properties and custom parsing.
78 lines (77 loc) • 1.87 kB
JSON
{
"name": "transform-to-unocss-core",
"type": "module",
"version": "0.0.68",
"description": "A utility to transform CSS to UnoCSS syntax. Supports various CSS properties and custom parsing.",
"author": "Simon He",
"license": "MIT",
"funding": "https://github.com/sponsors/Simon-He95",
"homepage": "https://github.com/Simon-He95/transform-to-unocss-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Simon-He95/transform-to-unocss-core.git"
},
"bugs": "https://github.com/Simon-He95/transform-to-unocss-core/issues",
"keywords": [
"unocss",
"css",
"transform",
"converter",
"utility",
"postcss",
"css-in-js",
"tailwind",
"style",
"parser"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"run": "./cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown ./src/index.ts",
"dev": "npm run build -- --watch src",
"format": "prettier --write --cache .",
"lint": "eslint . --cache",
"lint:fix": "pnpm run lint --fix",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.1",
"@types/node": "^18.19.112",
"bumpp": "^8.2.1",
"eslint": "^9.29.0",
"esno": "^0.16.3",
"picocolors": "^1.1.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"tsdown": "^0.10.2",
"tsx": "^3.14.0",
"typescript": "^4.9.5",
"vitest": "^0.15.2"
}
}