mini-strap/packages/core/package.json
aleidk e80fa615dc
All checks were successful
Publish package / build_and_publish (push) Successful in 26s
fix: build binary of core
2025-02-14 16:45:25 -03:00

23 lines
500 B
JSON

{
"name": "@mini-strap/core",
"version": "0.1.1",
"type": "module",
"exports": {
".": "./src/style.scss",
"./mixins": "./src/_mixins.scss"
},
"bin": {
"@mini-strap/core": "build.ts"
},
"scripts": {
"build": "bun sass --style compressed src/style.scss dist/style.css",
"ci:publish": "bun run build && bun publish --production --frozen-lockfile --silent"
},
"devDependencies": {
"@types/bun": "latest",
"sass": "^1.83.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}