-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.46 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
{
"name": "custom-hooks-plus",
"version": "1.0.4",
"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": "jest"
},
"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",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^3.5.1",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vue": "^3.4.24"
},
"repository": {
"type": "git",
"url": "https://github.com/DBAAZzz/custom-hooks-plus"
}
}