package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@vue-pdf/core",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "type": "module",
  7. "scripts": {
  8. "clear": "rimraf lib",
  9. "build": "rollup -c rollup.config.js",
  10. "build:watch": "rollup -c rollup.config.js --watch --sourcemap",
  11. "build:prod": "cross-env NODE_ENV=production rollup -c rollup.config.js"
  12. },
  13. "keywords": [],
  14. "author": "",
  15. "license": "ISC",
  16. "dependencies": {
  17. "crypto-js": "^4.1.1",
  18. "dayjs": "^1.11.6",
  19. "file-saver": "^2.0.5",
  20. "jszip": "^3.10.1",
  21. "lodash": "^4.17.21",
  22. "nanoid": "^4.0.2",
  23. "open-color": "^1.9.1",
  24. "pdfjs-dist": "^3.3.122",
  25. "perfect-freehand": "^1.2.0",
  26. "points-on-curve": "^1.0.0",
  27. "print-js": "^1.6.0",
  28. "roughjs": "^4.5.2",
  29. "uuid": "^9.0.0",
  30. "uuidv4": "^6.2.13"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "^7.19.6",
  34. "@babel/plugin-transform-runtime": "^7.19.6",
  35. "@babel/preset-env": "^7.19.4",
  36. "@babel/runtime-corejs3": "^7.20.1",
  37. "@rollup/plugin-babel": "^6.0.2",
  38. "@rollup/plugin-commonjs": "^23.0.2",
  39. "@rollup/plugin-json": "^6.0.0",
  40. "@rollup/plugin-node-resolve": "^15.0.1",
  41. "@types/crypto-js": "^4.1.2",
  42. "@typescript-eslint/parser": "^6.7.2",
  43. "cross-env": "^7.0.3",
  44. "rollup": "^3.2.3",
  45. "rollup-plugin-node-builtins": "^2.1.2",
  46. "rollup-plugin-typescript2": "^0.35.0",
  47. "rollup-plugin-uglify": "^6.0.4",
  48. "typescript": "^5.2.2"
  49. }
  50. }