@ebfe/vantkit-doc 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +56 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ [ebfe](https://www.npmjs.com/org/ebfe) 工程中的 vant-kit-engineering(vant-cli 工程) 包
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@ebfe/vantkit-doc",
3
+ "version": "0.0.1",
4
+ "description": "A project that includes common components from the H5 project (dependent on vant) and some utility functions",
5
+ "main": "lib/index.js",
6
+ "module": "es/index.js",
7
+ "style": "lib/index.css",
8
+ "typings": "lib/index.d.ts",
9
+ "files": [
10
+ "lib",
11
+ "es"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "license": "MIT",
17
+ "author": "astfn",
18
+ "peerDependencies": {
19
+ "vue": "^3.3.4"
20
+ },
21
+ "devDependencies": {
22
+ "@microsoft/api-extractor": "^7.52.9",
23
+ "@types/lodash": "^4.17.20",
24
+ "@vant/cli": "^7.0.0",
25
+ "sass": "^1.49.7",
26
+ "unplugin-dts": "1.0.0-beta.0",
27
+ "vue": "^3.3.4"
28
+ },
29
+ "eslintConfig": {
30
+ "root": true,
31
+ "extends": [
32
+ "@vant"
33
+ ]
34
+ },
35
+ "prettier": {
36
+ "singleQuote": true
37
+ },
38
+ "browserslist": [
39
+ "Chrome >= 51",
40
+ "iOS >= 10"
41
+ ],
42
+ "dependencies": {
43
+ "lodash": "^4.17.21",
44
+ "vant": "^4.9.21",
45
+ "@ebfe/vant-kit": "0.0.4",
46
+ "@ebfe/vhooks": "0.0.3",
47
+ "@ebfe/utils": "0.0.1"
48
+ },
49
+ "scripts": {
50
+ "dev": "vant-cli dev",
51
+ "lint": "vant-cli lint",
52
+ "build": "vant-cli build",
53
+ "build:site": "vant-cli build-site",
54
+ "release:site": "pnpm build:site && npx gh-pages -d site-dist"
55
+ }
56
+ }