@xypnox/themescura
Version:
A design system and theme engine toolkit
54 lines • 1.23 kB
JSON
{
"name": "@xypnox/themescura",
"version": "0.1.2",
"description": "A design system and theme engine toolkit",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/types/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"css-variables",
"theme-tokens",
"dynamic-theming",
"style-management",
"custom-properties",
"responsive-themes",
"design-system",
"theming-engine",
"ui-design",
"web-development"
],
"author": "",
"license": "GPL-3.0-only",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"default": "./dist/esm/index.js",
"types": "./dist/esm/types/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.js",
"types": "./dist/cjs/types/index.d.ts"
}
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup --watch -c",
"test": "echo \"Error: no test specified\" && exit 1"
}
}