mirror of
https://github.com/zenlm/logo.git
synced 2026-07-27 06:11:28 +00:00
Enforces one-brand-per-repo: the shared build.ts carries no brand name (byte- identical everywhere, driven by package.json "brand"); removed the unused generator.ts/generate-showcase.ts (leftover, carried foreign-brand output paths); genericized the animated-mark provenance and README brand-package examples. Each package now names only its own brand.
89 lines
2.1 KiB
JSON
89 lines
2.1 KiB
JSON
{
|
|
"name": "@zenlm/logo",
|
|
"version": "0.1.3",
|
|
"description": "Official Zen ensō logo — animated, brand-neutral SVG",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"svg"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./logos": {
|
|
"types": "./dist/logos.d.ts",
|
|
"import": "./dist/logos.js",
|
|
"require": "./dist/logos.js"
|
|
},
|
|
"./react": {
|
|
"types": "./dist/react.d.ts",
|
|
"import": "./dist/react.js",
|
|
"require": "./dist/react.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run compile && npm run build:cli && npm run generate",
|
|
"build:cli": "tsc src/build.ts --outDir dist --module esnext --target es2020 --moduleResolution node --esModuleInterop --skipLibCheck",
|
|
"compile": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"dev": "tsc --watch",
|
|
"generate": "node dist/build.js",
|
|
"preview": "npm run generate && open menu-bar-preview.html",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"format": "prettier --write 'src/**/*.{ts,tsx,json}'",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "npm run typecheck && npm run build",
|
|
"watch": "tsc --watch",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"zen",
|
|
"enso",
|
|
"logo",
|
|
"icon",
|
|
"favicon",
|
|
"react",
|
|
"typescript"
|
|
],
|
|
"author": "Zen LM",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"sharp": "^0.34.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/minimatch": "^5.1.2",
|
|
"@types/node": "^20.19.17",
|
|
"@types/react": "^18.3.24",
|
|
"react": "^18.3.1",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.8.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/zenlm/logo.git"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"brand": {
|
|
"name": "Zen",
|
|
"tagline": "Official brand marks — SVG, PNG, ICO, favicons & app icons.",
|
|
"github": "zenlm",
|
|
"domain": "zenlm.org"
|
|
}
|
|
}
|