@tenoxui/moxie
Version:
Very lightweight utility-first CSS engine for style generation
62 lines (61 loc) • 1.49 kB
JSON
{
"name": "@tenoxui/moxie",
"version": "0.7.1",
"description": "Very lightweight utility-first CSS engine for style generation",
"author": "NOuSantx <nousantx@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/tenoxui/tenoxui#readme",
"keywords": [
"css",
"css-framework",
"css-engine",
"css-parser",
"utility-first",
"atomic-css",
"frontend",
"library",
"javascript-library"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tenoxui/tenoxui.git",
"directory": "packages/@tenoxui-moxie"
},
"bugs": {
"url": "https://github.com/tenoxui/tenoxui/issues"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"browser": "./dist/index.iife.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"type:check": "tsc --noEmit",
"type:build": "tsc --declaration --emitDeclarationOnly --outDir dist",
"build:prod": "pnpm type:check && pnpm build && pnpm type:build"
},
"devDependencies": {
"typescript": "^5.7.3",
"vite": "^6.2.3",
"vitest": "^3.0.5"
},
"dependencies": {
"@tenoxui/types": "^0.1.2"
}
}