-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "custom-hooks-plus",
"version": "1.0.7",
"description": "适用于uniapp、Vue3的自定义生命周期钩子",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && run-s build-bundle build-types",
"build-bundle": "rollup -c ./rollup.config.mjs --bundleConfigAsCjs",
"build-types": "run-s build-temp build-api-types",
"build-temp": "rimraf temp && tsc --emitDeclarationOnly --outDir temp -p ./tsconfig.types.json",
"build-api-types": "api-extractor run && rimraf temp",
"ts-build": "tsc -p .",
"test": "vitest"
},
"types": "dist/index.d.ts",
"author": "DBAAZzz",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@dcloudio/types": "^3.4.8",
"@dcloudio/uni-app": "3.0.0-3081220230817001",
"@microsoft/api-extractor": "^7.43.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.2.3",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/test-utils": "^2.4.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"happy-dom": "^15.11.6",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"pinia": "^2.2.6",
"rimraf": "^3.0.2",
"rollup": "^3.5.1",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^5.4.11",
"vitest": "^2.1.5",
"vue": "^3.4.24"
},
"peerDependencies": {
"vue": "^3.4.24",
"@dcloudio/uni-app": "3.0.0-3081220230817001"
},
"files": [
"dist"
],
"keywords": [
"vue3",
"uniapp",
"hooks"
],
"repository": {
"type": "git",
"url": "https://github.com/DBAAZzz/custom-hooks-plus"
}
}