package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@adobe/css-tools",
  3. "version": "4.4.2",
  4. "description": "CSS parser / stringifier",
  5. "source": "src/index.ts",
  6. "main": "./dist/index.cjs",
  7. "module": "./dist/index.mjs",
  8. "exports": {
  9. "import": "./dist/index.mjs",
  10. "types": "./dist/types.d.ts",
  11. "require": "./dist/index.cjs"
  12. },
  13. "types": "./dist/types.d.ts",
  14. "type": "module",
  15. "files": [
  16. "dist",
  17. "Readme.md"
  18. ],
  19. "devDependencies": {
  20. "@parcel/packager-ts": "2.13.3",
  21. "@parcel/transformer-typescript-types": "2.13.3",
  22. "@types/benchmark": "^2.1.1",
  23. "@types/bytes": "^3.1.5",
  24. "@types/jest": "^29.5.3",
  25. "@types/node": "^22.13.1",
  26. "benchmark": "^2.1.4",
  27. "bytes": "^3.1.0",
  28. "gts": "^6.0.2",
  29. "jest": "^29.6.2",
  30. "parcel": "^2.13.3",
  31. "ts-jest": "^29.1.1",
  32. "typescript": "^5.7.3"
  33. },
  34. "scripts": {
  35. "benchmark": "node benchmark/index.mjs",
  36. "test": "jest",
  37. "clean": "gts clean && rm -rf ./dist",
  38. "build": "parcel build && node ./utils/fix-type-generation.cjs",
  39. "fix": "gts fix",
  40. "lint": "gts lint",
  41. "prepack": "npm run build",
  42. "prepare": "npm run build",
  43. "pretest": "npm run build",
  44. "posttest": "npm run lint"
  45. },
  46. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  47. "contributors": [
  48. "Jean-Philippe Zolesio <holblin@gmail.com>"
  49. ],
  50. "license": "MIT",
  51. "repository": {
  52. "type": "git",
  53. "url": "https://github.com/adobe/css-tools.git"
  54. },
  55. "keywords": [
  56. "css",
  57. "parser",
  58. "stringifier",
  59. "stylesheet"
  60. ]
  61. }