{
"name": "@clevertree/themed-styler",
"version": "0.2.0",
"description": "Runtime styling engine with theme support for web and React Native",
"license": "MIT OR Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/",
"wasm/",
"assets/",
"src/",
"Cargo.toml",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./wasm": {
"types": "./wasm/themed_styler.d.ts",
"default": "./wasm/themed_styler.js"
},
"./theme": "./assets/theme.yaml"
},
"scripts": {
"build": "npm run build:wasm && npm run build:types",
"build:wasm": "bash scripts/build-wasm.sh",
"build:types": "tsc",
"test": "cargo test",
"prepublishOnly": "npm run build"
},
"keywords": [
"styling",
"theme",
"tailwind",
"wasm",
"react-native"
],
"devDependencies": {
"typescript": "^5.3.0"
}
}