@dypnb/dev-tools 1.0.0

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.
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@dypnb/dev-tools",
3
+ "version": "1.0.0",
4
+ "description": "开发时的提效工具",
5
+ "main": "lib/bundle.cjs.js",
6
+ "jsnext:main": "lib/bundle.esm.js",
7
+ "module": "lib/bundle.esm.js",
8
+ "browser": "lib/bundle.browser.js",
9
+ "type": "module",
10
+ "scripts": {
11
+ "dev": "npx rollup -wc rollup.config.dev.js",
12
+ "build": "npm run clean && npx rollup -c rollup.config.js && npm run build:types",
13
+ "build:types": "npx tsc",
14
+ "clean": "rimraf ./dist",
15
+ "genPage": "node ./dist/genPage/index.js",
16
+ "docs:dev": "vitepress dev docs --host ",
17
+ "docs:build": "vitepress build docs",
18
+ "docs:preview": "vitepress preview docs"
19
+ },
20
+ "dependencies": {
21
+ "axios": "^1.4.0",
22
+ "chalk": "4.1.0",
23
+ "execa": "^5.1.1",
24
+ "findup-sync": "^5.0.0",
25
+ "moment": "^2.29.4",
26
+ "ora": "^5.2.0",
27
+ "scp2": "^0.5.0"
28
+ },
29
+ "devDependencies": {
30
+ "@babel/core": "^7.22.8",
31
+ "@rollup/plugin-babel": "^6.0.3",
32
+ "@rollup/plugin-commonjs": "^25.0.2",
33
+ "@rollup/plugin-eslint": "^9.0.4",
34
+ "@rollup/plugin-json": "^6.0.0",
35
+ "@rollup/plugin-node-resolve": "^15.1.0",
36
+ "@rollup/plugin-typescript": "^11.1.2",
37
+ "@vitepress-demo-preview/component": "^2.3.2",
38
+ "@vitepress-demo-preview/plugin": "^1.2.1",
39
+ "rimraf": "^5.0.1",
40
+ "rollup": "^3.26.2",
41
+ "rollup-plugin-filesize": "^10.0.0",
42
+ "rollup-plugin-json": "^4.0.0",
43
+ "rollup-plugin-livereload": "^2.0.5",
44
+ "rollup-plugin-node-resolve": "^5.2.0",
45
+ "rollup-plugin-serve": "^2.0.2",
46
+ "rollup-plugin-terser": "^7.0.2",
47
+ "vitepress": "^1.0.0-beta.5"
48
+ },
49
+ "keywords": [
50
+ "tool",
51
+ "vue"
52
+ ],
53
+ "author": "duanyipeng",
54
+ "license": "ISC",
55
+ "engines": {
56
+ "node": ">=8.9",
57
+ "npm": ">= 3.0.0"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public",
61
+ "registry": "https://registry.npmjs.org/"
62
+ },
63
+ "files": [
64
+ "dist/*",
65
+ "*.json"
66
+ ],
67
+ "browserslist": [
68
+ "> 1%",
69
+ "last 2 versions"
70
+ ]
71
+ }