@theemo/build
Version:
Theme Builder
69 lines • 1.65 kB
JSON
{
"name": "@theemo/build",
"version": "1.0.0",
"description": "Theme Builder",
"license": "MIT",
"author": "Thomas Gossmann",
"homepage": "https://theemo.io",
"bugs": "https://github.com/theemo-tokens/theemo/issues",
"repository": "https://github.com/theemo-tokens/theemo",
"publishConfig": {
"access": "public"
},
"keywords": [
"design system",
"theme",
"design tokens"
],
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"lightningcss": "^1.29.3",
"read-pkg": "^9.0.0",
"write-package": "^7.1.0"
},
"devDependencies": {
"@gossi/config-eslint": "^0.14.0",
"@gossi/config-prettier": "^0.10.0",
"@types/node": "^22.15.30",
"concurrently": "^9.1.2",
"eslint": "^8.57.1",
"prettier": "^3.5.3",
"tsdown": "^0.12.7",
"typescript": "5.8.3",
"vitest": "3.2.2",
"@theemo-config/tsdown": "0.0.0",
"@theemo-config/tsconfig": "0.0.0",
"@theemo-config/typedoc": "0.0.0",
"@theemo/theme": "1.0.0"
},
"engines": {
"node": ">=20.11.0"
},
"release-plan": {
"semverIncrementAs": {
"patch": "major",
"minor": "major"
}
},
"scripts": {
"build": "tsdown",
"lint": "concurrently -g 'npm:lint:*(!fix)'",
"lint:fix": "concurrently -g 'npm:lint:*:fix'",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"start": "tsdown --watch",
"_test": "vitest run",
"_test:dev": "vitest"
}
}