-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.83 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.83 KB
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
{
"name": "taro-form-react",
"description": "A form component for Taro 3.x based on React",
"version": "0.4.0",
"browser": "dist/index.umd.js",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"source": "src/index.tsx",
"types": "dist/types/src/index.d.ts",
"type": "module",
"repository": "https://github.com/Runc2333/taro-form-react.git",
"author": "Runc <git@runc321.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"files": [
"dist",
"dist/types"
],
"dependencies": {
"ahooks": "^3.8.4",
"classnames": "^2.5.1",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@tarojs/components": "^3",
"@tarojs/react": "^3",
"@tarojs/taro": "^3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"eslint-config-taro": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-simple-import-sort": "^12",
"react": "^18",
"react-dom": "^18",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@tarojs/components": "^3",
"@tarojs/react": "^3",
"@tarojs/taro": "^3",
"react": "^18",
"react-dom": "^18"
}
}