package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "video-animation-player",
  3. "version": "1.0.5",
  4. "description": "webgl动画特效组件",
  5. "main": "dist/vap.js",
  6. "scripts": {
  7. "build": "npm run dist && rollup --config rollup.config.dist.js",
  8. "dist": "rollup --config rollup.config.js",
  9. "dev": "rollup --config rollup.config.js --watch"
  10. },
  11. "keywords": [
  12. "webgl",
  13. "animation",
  14. "canvas"
  15. ],
  16. "author": "hujinliang",
  17. "license": "MIT",
  18. "devDependencies": {
  19. "@babel/core": "^7.11.6",
  20. "@babel/plugin-external-helpers": "^7.10.4",
  21. "@babel/plugin-transform-runtime": "^7.11.5",
  22. "@babel/preset-env": "^7.11.5",
  23. "@babel/preset-typescript": "^7.10.4",
  24. "@rollup/plugin-node-resolve": "^9.0.0",
  25. "@typescript-eslint/eslint-plugin": "5.4.0",
  26. "@typescript-eslint/parser": "5.4.0",
  27. "babel-plugin-async-to-promises": "^1.0.5",
  28. "babel-preset-env": "^1.7.0",
  29. "babel-preset-typescript": "^7.0.0-alpha.19",
  30. "eslint": "8.2.0",
  31. "eslint-config-prettier": "8.3.0",
  32. "eslint-plugin-import": "2.25.3",
  33. "eslint-plugin-prettier": "4.0.0",
  34. "prettier": "^2.7.1",
  35. "rollup": "^2.28.2",
  36. "rollup-plugin-babel": "^4.4.0",
  37. "rollup-plugin-commonjs": "^10.1.0",
  38. "rollup-plugin-node-resolve": "^5.2.0",
  39. "rollup-plugin-typescript2": "^0.27.3",
  40. "rollup-plugin-uglify": "^6.0.4",
  41. "typescript": "^4.0.3"
  42. }
  43. }