package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "uni-simple-router",
  3. "version": "2.0.8-beta.3",
  4. "description": "> 一个更为简洁的[Vue-router](https://router.vuejs.org/zh/),专为 [uni-app](https://uniapp.dcloud.io/) 量身打造",
  5. "main": "dist/uni-simple-router.js",
  6. "types": "dist/uni-simple-router.d.ts",
  7. "scripts": {
  8. "dev": "webpack --watch --progress --config webpack/webpack.dev.js",
  9. "dist": "webpack --progress --config webpack/webpack.prod.js",
  10. "dist:dts": "api-extractor run --local --verbose",
  11. "lint": "eslint --ext .js,.ts src",
  12. "lintFix": "eslint --ext .js,.ts src --fix",
  13. "test": "jest test/query-toggle.spec.ts",
  14. "publish": "node ./publish/index.js",
  15. "build": "node ./publish/build.js"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/SilurianYang/uni-simple-router.git"
  20. },
  21. "keywords": [
  22. "router",
  23. "uni-app-router",
  24. "interceptor",
  25. "uni-app",
  26. "uniapp"
  27. ],
  28. "author": "hhyang",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/SilurianYang/uni-simple-router/issues"
  32. },
  33. "homepage": "https://github.com/SilurianYang/uni-simple-router#readme"
  34. }