You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1022B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "colorette",
  3. "version": "2.0.20",
  4. "type": "module",
  5. "main": "index.cjs",
  6. "module": "index.js",
  7. "types": "index.d.ts",
  8. "description": "🌈Easily set your terminal text color & styles.",
  9. "repository": "jorgebucaran/colorette",
  10. "license": "MIT",
  11. "exports": {
  12. "./package.json": "./package.json",
  13. ".": {
  14. "require": "./index.cjs",
  15. "import": "./index.js",
  16. "types": "./index.d.ts"
  17. }
  18. },
  19. "files": [
  20. "*.*(c)[tj]s*"
  21. ],
  22. "author": "Jorge Bucaran",
  23. "keywords": [
  24. "terminal",
  25. "styles",
  26. "color",
  27. "ansi"
  28. ],
  29. "scripts": {
  30. "test": "c8 twist tests/*.js",
  31. "build": "npx rollup --format cjs --input index.js --file index.cjs",
  32. "deploy": "npm test && git commit --all --message $tag && git tag --sign $tag --message $tag && git push && git push --tags",
  33. "release": "tag=$npm_package_version npm run deploy && npm publish --access public",
  34. "prepare": "npm run build"
  35. },
  36. "devDependencies": {
  37. "c8": "*",
  38. "twist": "*"
  39. }
  40. }