package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. {
  2. "name": "@nutui/nutui-taro",
  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. "vetur": {
  15. "tags": "dist/smartips/tags.json",
  16. "attributes": "dist/smartips/attributes.json"
  17. },
  18. "web-types": "dist/smartips/web-types.json",
  19. "keywords": [
  20. "nutui",
  21. "nutui2",
  22. "nutui3",
  23. "nutui4",
  24. "vue",
  25. "vue3",
  26. "webpack",
  27. "vue component",
  28. "vue3 component",
  29. "vite",
  30. "jdc",
  31. "jdcfe"
  32. ],
  33. "author": "jdcfe",
  34. "license": "MIT",
  35. "publishConfig": {
  36. "access": "public",
  37. "registry": "https://registry.npmjs.org/"
  38. },
  39. "files": [
  40. "dist",
  41. "README.md",
  42. "package.json",
  43. "LICENSE",
  44. "CHANGELOG.md"
  45. ],
  46. "scripts": {
  47. "publish:beta": "npm publish --tag=beta"
  48. },
  49. "standard-version": {
  50. "scripts": {
  51. "postchangelog": "node ./jd/updateChangelog.js"
  52. }
  53. },
  54. "dependencies": {
  55. "@nutui/icons-vue-taro": "0.0.3",
  56. "@tarojs/components": "3.5.6",
  57. "sass": "^1.50.0",
  58. "vscode": "^1.1.37",
  59. "vue-router": "^4.0.12"
  60. },
  61. "devDependencies": {
  62. "@commitlint/cli": "^10.0.0",
  63. "@commitlint/config-conventional": "^10.0.0",
  64. "@tarojs/cli": "3.5.6",
  65. "@tarojs/mini-runner": "3.5.6",
  66. "@tarojs/plugin-framework-vue3": "3.5.6",
  67. "@tarojs/plugin-html": "3.5.6",
  68. "@tarojs/plugin-platform-weapp": "3.5.6",
  69. "@tarojs/runtime": "3.5.6",
  70. "@tarojs/taro": "3.5.6",
  71. "@tarojs/webpack5-runner": "3.5.6",
  72. "@types/jest": "^26.0.22",
  73. "@types/node": "^17.0.16",
  74. "@typescript-eslint/eslint-plugin": "^4.20.0",
  75. "@typescript-eslint/parser": "^4.20.0",
  76. "@vitejs/plugin-vue": "^4.0.0",
  77. "@vue/compiler-dom": "^3.2.45",
  78. "@vue/compiler-sfc": "^3.2.45",
  79. "@vue/eslint-config-prettier": "^6.0.0",
  80. "@vue/eslint-config-typescript": "^7.0.0",
  81. "@vue/test-utils": "^2.0.0-rc.18",
  82. "autoprefixer": "^10.3.4",
  83. "axios": "^0.21.0",
  84. "babel-preset-taro": "3.5.6",
  85. "canvas": "^2.9.0",
  86. "codesandbox": "^2.2.3",
  87. "eslint": "^7.23.2",
  88. "eslint-config-taro": "3.5.6",
  89. "eslint-plugin-prettier": "^3.3.1",
  90. "eslint-plugin-vue": "^7.8.0",
  91. "eslint-visitor-keys": "2",
  92. "fs-extra": "^9.1.0",
  93. "highlight.js": "^10.3.1",
  94. "husky": "^6.0.0",
  95. "inquirer": "^8.2.0",
  96. "jest": "^26.6.3",
  97. "lint-staged": "^10.5.0",
  98. "lzutf8": "0.6.0",
  99. "markdown-it": "^13.0.1",
  100. "markdown-it-container": "^3.0.0",
  101. "prettier": "^2.0.0",
  102. "remark-codesandbox": "^0.10.1",
  103. "rollup-plugin-visualizer": "^5.8.3",
  104. "standard-version": "^9.3.0",
  105. "swiper": "6.5.1",
  106. "transliteration": "^2.2.0",
  107. "ts-jest": "^26.5.5",
  108. "typescript": "^4.9.3",
  109. "vite": "^4.0.0",
  110. "vite-plugin-md": "^0.21.5",
  111. "vue": "^3.2.24",
  112. "vue-jest": "^5.0.0-alpha.7",
  113. "vue-tsc": "^1.0.9",
  114. "webpack": "^5.69.0"
  115. },
  116. "eslintConfig": {
  117. "root": true,
  118. "env": {
  119. "node": true
  120. },
  121. "extends": [
  122. "plugin:vue/vue3-essential",
  123. "eslint:recommended",
  124. "@vue/typescript/recommended",
  125. "@vue/prettier",
  126. "@vue/prettier/@typescript-eslint"
  127. ],
  128. "parserOptions": {
  129. "ecmaVersion": 2020
  130. },
  131. "rules": {
  132. "vue/no-unused-components": "off",
  133. "no-debugger": "off"
  134. }
  135. },
  136. "engines": {
  137. "node": ">= 16.0.0",
  138. "pnpm": ">= 7.0.0"
  139. },
  140. "lint-staged": {
  141. "*.md": "prettier --write",
  142. "*.{ts,tsx,js,vue,scss}": "prettier --write"
  143. },
  144. "repository": {
  145. "type": "git",
  146. "url": "https://github.com/jdf2e/nutui.git"
  147. }
  148. }