{ "name": "@status-im/colors", "version": "1.0.0", "license": "MPL-2.0", "files": [ "types", "dist", "src" ], "main": "dist/index.cjs.js", "module": "dist/index.es.js", "types": "dist/index.d.ts", "source": "src/index.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.es.js", "require": "./dist/index.cjs.js" }, "./package.json": "./package.json" }, "scripts": { "sync": "rimraf src && vite-node scripts/sync.ts", "dev": "vite build --watch --mode development", "build:types": "tsc --noEmit false --emitDeclarationOnly", "build": "vite build", "postbuild": "yarn build:types", "#test": "vitest", "typecheck": "tsc", "lint": "eslint src", "lint:fix": "yarn lint --fix", "format": "prettier --write src", "clean": "rimraf dist node_modules .turbo", "prepack": "yarn build" }, "peerDependencies": {}, "devDependencies": { "@clack/prompts": "^0.6.3", "colorjs.io": "^0.4.3", "@status-im/eslint-config": "*", "figma-api": "^1.11.0", "fs-extra": "^11.1.1", "vite": "^5.4.3", "vite-node": "^2.0.5" }, "publishConfig": { "access": "public" }, "lint-staged": { "*.{ts,tsx,js,jsx,mjs}": [ "eslint", "prettier --write" ], "*.{md,mdx,yml,yaml,json}": [ "prettier --write" ] } }