-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.5 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
{
"name": "simple-url-stringify",
"description": "url转字符串",
"version": "1.0.3",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"/dist",
"/docs/.vitepress/dist"
],
"types": "dist/index.d.ts",
"scripts": {
"dev": "npm run docs:dev",
"build": "vite build && vue-tsc -p tsconfig-build.json && tsc-alias -p tsconfig-build.json",
"preview": "vite preview",
"preversion": "npm run test",
"postversion": "git push && git push --tags && npm run docs:build && npm run build",
"test": "jest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky install",
"publish:next": "npm publish --registry=https://registry.npmjs.org/ --tag=next",
"publish:beta": "npm publish --registry=https://registry.npmjs.org/ --tag=beta",
"publish:latest": "npm publish --registry=https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/prismjs": "^1.26.0",
"@types/qs": "^6.9.14",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vueuse/core": "^10.1.0",
"babel-jest": "^29.5.0",
"element-plus": "^2.3.4",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prismjs": "^1.29.0",
"qs": "^6.12.0",
"rxjs": "^7.8.1",
"sass": "^1.62.1",
"stylelint": "^15.2.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^30.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"typescript": "^5.0.2",
"uuid": "^9.0.0",
"vite": "^4.3.2",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vitepress": "^1.0.0-alpha.74",
"vue": "^3.2.47",
"vue-tsc": "^1.4.2"
},
"peerDependencies": {
"qs": "*",
"lodash": "*"
},
"author": {
"name": "lvliqi",
"email": "lvliqi_d@163.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dreamllq/web-url-stringify.git"
},
"keywords": [
"url",
"stringify"
]
}