@playbooks/theme
Version:
The default theme for Playbooks.
40 lines (39 loc) • 1.02 kB
JSON
{
"name": "@playbooks/theme",
"version": "0.1.17",
"description": "The default theme for Playbooks.",
"author": "Eric Hubbell<eric@erichubbell.com>",
"license": "ISC",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/playbooks-xyz/playbooks-kit/packages/theme.git"
},
"files": [
"dist"
],
"keywords": [
"playbooks",
"theme"
],
"scripts": {
"start": "vite build --mode development --minify false --watch",
"build": "vite build --mode production --minify true && npm run build:ts",
"build:ts": "dts-bundle-generator --config dts.config.ts",
"clean": "npm run lint:fix",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier src",
"format:fix": "prettier --write src",
"commit": "scripts/commit.sh",
"deploy": "scripts/deploy.sh",
"git": "git push --tags",
"test": "jest",
"prepare": "husky"
},
"devDependencies": {
"@playbooks/configs": "^0.0.1"
}
}