This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
100 lines (100 loc) · 2.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "taro-ui-vue3",
"version": "1.1.0-dev.3",
"description": "Taro UI Rewritten in Vue 3.0",
"main:h5": "dist/index.h5.js",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"source": "packages/taro-ui-vue3/index.ts",
"sideEffects": [
"*.scss",
"*.css"
],
"private": "true",
"types": "./types/index.d.ts",
"keywords": [
"taro",
"taro-ui-vue3",
"taro-ui",
"ui",
"taro-vue3"
],
"files": [
"dist",
"lib",
"types",
"global.d.ts"
],
"workspaces": [
"packages/*",
"website",
"demo"
],
"author": "Ken Ho <b2nil>",
"homepage": "https://b2nil.github.io/taro-ui-vue3",
"repository": {
"type": "git",
"url": "git@github.com:b2nil/taro-ui-vue3.git"
},
"license": "MIT",
"templateInfo": {
"name": "default",
"typescript": true,
"css": "sass"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"demo:h5": "cd demo && yarn dev:h5",
"demo:weapp": "cd demo && yarn dev:weapp",
"build": "yarn clean && yarn vite:bundle && yarn vite:lib",
"vite:lib": "node ./build/vite.lib.js",
"vite:bundle": "node ./build/vite.bundle.js",
"dev:docs": "cd website && yarn dev:docs",
"build:docs": "cd website && yarn build:docs",
"deploy:docs": "cd website && yarn deploy:docs",
"prepublishOnly": "yarn clean && yarn build",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules && jest --coverage --runInBand",
"clean": "rimraf .temp dist lib coverage types"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"dependencies": {
"dayjs": "^1.8.29",
"lodash-es": "^4.17.15"
},
"peerDependencies": {
"@tarojs/components": "^3.3.0",
"@tarojs/taro": "^3.3.0",
"vue": "^3.2.0"
},
"devDependencies": {
"taro-plugin-vue": "^0.4.0",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.17",
"@types/lodash-es": "^4.17.3",
"@types/shelljs": "^0.8.8",
"@vitejs/plugin-vue": "^1.6.0",
"@vue/test-utils": "2.0.0-rc.8",
"babel-jest": "^27.0.2",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"jest": "^27.0.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-jest": "^27.0.0",
"ts-loader": "^8.0.2",
"tslib": "^2.1.0",
"typescript": "^4.2.0",
"vite": "^2.5.5",
"vue-jest": "https://github.com/b2nil/vue-jest#next"
}
}