package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. {
  2. "name": "@nutui/nutui",
  3. "version": "4.0.0-beta.9",
  4. "description": "京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)",
  5. "main": "dist/nutui.umd.cjs",
  6. "module": "dist/nutui.es.js",
  7. "style": "dist/style.css",
  8. "type": "module",
  9. "typings": "dist/types/index.d.ts",
  10. "sideEffects": [
  11. "dist/packages/_es/*",
  12. "dist/packages/**/style*"
  13. ],
  14. "web-types": "dist/smartips/web-types.json",
  15. "keywords": [
  16. "nutui",
  17. "nutui2",
  18. "nutui3",
  19. "nutui4",
  20. "vue",
  21. "vue3",
  22. "webpack",
  23. "vue component",
  24. "vue3 component",
  25. "vite",
  26. "jdc",
  27. "jdcfe"
  28. ],
  29. "author": "jdcfe",
  30. "license": "MIT",
  31. "publishConfig": {
  32. "access": "public",
  33. "registry": "https://registry.npmjs.org/"
  34. },
  35. "scripts": {
  36. "publish:beta": "npm publish --tag=beta"
  37. },
  38. "standard-version": {
  39. "scripts": {
  40. "postchangelog": "node ./jd/updateChangelog.js"
  41. }
  42. },
  43. "dependencies": {
  44. "@nutui/icons-vue": "0.0.19",
  45. "sass": "^1.50.0",
  46. "vscode": "^1.1.37",
  47. "vue-router": "^4.0.12"
  48. },
  49. "devDependencies": {
  50. "@commitlint/cli": "^10.0.0",
  51. "@commitlint/config-conventional": "^10.0.0",
  52. "@tarojs/cli": "3.5.6",
  53. "@tarojs/mini-runner": "3.5.6",
  54. "@tarojs/plugin-framework-vue3": "3.5.6",
  55. "@tarojs/plugin-html": "3.5.6",
  56. "@tarojs/plugin-platform-weapp": "3.5.6",
  57. "@tarojs/runtime": "3.5.6",
  58. "@tarojs/taro": "3.5.6",
  59. "@tarojs/webpack5-runner": "3.5.6",
  60. "@types/jest": "^26.0.22",
  61. "@types/node": "^17.0.16",
  62. "@typescript-eslint/eslint-plugin": "^4.20.0",
  63. "@typescript-eslint/parser": "^4.20.0",
  64. "@vitejs/plugin-vue": "^4.0.0",
  65. "@vue/compiler-dom": "^3.2.45",
  66. "@vue/compiler-sfc": "^3.2.45",
  67. "@vue/eslint-config-prettier": "^6.0.0",
  68. "@vue/eslint-config-typescript": "^7.0.0",
  69. "@vue/test-utils": "^2.0.0-rc.18",
  70. "autoprefixer": "^10.3.4",
  71. "axios": "^0.21.0",
  72. "babel-preset-taro": "3.5.6",
  73. "canvas": "^2.9.0",
  74. "codesandbox": "^2.2.3",
  75. "eslint": "^7.23.2",
  76. "eslint-config-taro": "3.5.6",
  77. "eslint-plugin-prettier": "^3.3.1",
  78. "eslint-plugin-vue": "^7.8.0",
  79. "eslint-visitor-keys": "2",
  80. "fs-extra": "^9.1.0",
  81. "highlight.js": "^10.3.1",
  82. "husky": "^6.0.0",
  83. "inquirer": "^8.2.0",
  84. "jest": "^26.6.3",
  85. "lint-staged": "^10.5.0",
  86. "lzutf8": "0.6.0",
  87. "markdown-it": "^13.0.1",
  88. "markdown-it-container": "^3.0.0",
  89. "prettier": "^2.0.0",
  90. "remark-codesandbox": "^0.10.1",
  91. "rollup-plugin-visualizer": "^5.8.3",
  92. "standard-version": "^9.3.0",
  93. "swiper": "6.5.1",
  94. "transliteration": "^2.2.0",
  95. "ts-jest": "^26.5.5",
  96. "typescript": "^4.9.3",
  97. "vite": "^4.0.0",
  98. "vite-plugin-md": "^0.21.5",
  99. "vue": "^3.2.24",
  100. "vue-jest": "^5.0.0-alpha.7",
  101. "vue-tsc": "^1.0.9",
  102. "webpack": "^5.69.0"
  103. },
  104. "eslintConfig": {
  105. "root": true,
  106. "env": {
  107. "node": true
  108. },
  109. "extends": [
  110. "plugin:vue/vue3-essential",
  111. "eslint:recommended",
  112. "@vue/typescript/recommended",
  113. "@vue/prettier",
  114. "@vue/prettier/@typescript-eslint"
  115. ],
  116. "parserOptions": {
  117. "ecmaVersion": 2020
  118. },
  119. "rules": {
  120. "vue/no-unused-components": "off",
  121. "no-debugger": "off"
  122. }
  123. },
  124. "engines": {
  125. "node": ">= 16.0.0",
  126. "pnpm": ">= 7.0.0"
  127. },
  128. "lint-staged": {
  129. "*.md": "prettier --write",
  130. "*.{ts,tsx,js,vue,scss}": "prettier --write"
  131. },
  132. "repository": {
  133. "type": "git",
  134. "url": "https://github.com/jdf2e/nutui.git"
  135. }
  136. }