@devlander/colors
Version:
Color utility package used between packages
98 lines (97 loc) • 3.41 kB
JSON
{
"name": "@devlander/colors",
"description": "Color utility package used between packages",
"version": "0.0.8",
"browser": "dist/umd/index.js",
"main": "dist/cjs/index.js",
"types": "typings/index.d.ts",
"module": "dist/esm/index.js",
"type": "commonjs",
"scripts": {
"prebuild": "yarn cache clean --force",
"build:index": "node ./external-modules/auto-export.js",
"build:esm": "tsc",
"test": "jest",
"test:failed": "jest --onlyFailures",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint ./src --ext .ts --fix && yarn run format && yarn run typecheck ",
"typecheck": "tsc --project tsconfig.json --noEmit --emitDeclarationOnly false",
"build": "npx rimraf ./dist && npx rimraf ./typings && yarn run build:index && yarn build:esm && yarn build:umd",
"build:umd": "rollup -c ",
"timeout": "delay 5",
"docs": "typedoc --out ./docs ./src",
"push-main": "git add -A && yarn run timeout && git commit -m 'updated build' && yarn run timeout && git push origin main",
"start-publish": "yarn run lint && yarn run build && npm publish",
"prepare": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Devlander-Software/colors.git"
},
"keywords": [
"typescript",
"utils",
"devlander",
"colors"
],
"author": "Landon Johnson",
"license": "ISC",
"bugs": {
"url": "https://github.com/Devlander-Software/utils/issues"
},
"homepage": "https://github.com/Devlander-Software/utils#readme",
"files": [
"dist",
"typings",
"docs"
],
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.0",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-object-rest-spread": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.22.15",
"@devlander/collect-exports-for-bundle": "^1.1.68",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-auto-install": "^3.0.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/jest": "^29.5.6",
"@types/jsdom-global": "^3.0.7",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-jest": "^29.7.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-testing-library": "^6.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom-global": "^3.0.2",
"picocolors": "^1.0.0",
"prettier": "^3.0.3",
"rollup": "^3.29.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.8",
"typescript": "5.3.x"
},
"dependencies": {
"@devlander/utils": "^0.0.66"
}
}