-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.99 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
{
"name": "@wsvaio/pinia-plugin-persist",
"type": "module",
"version": "1.0.3",
"description": "pinia持久化插件,可兼容uniapp",
"author": "wsvaio <wsvaio@qq.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/wsvaio",
"homepage": "https://github.com/wsvaio/pinia-plugin-persist#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wsvaio/pinia-plugin-persist.git"
},
"bugs": {
"url": "https://github.com/wsvaio/pinia-plugin-persist/issues"
},
"keywords": [
"wsvaio",
"uniapp",
"persist",
"pinia",
"pinia-plugin",
"pinia-plugin-persist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*"
},
"main": "index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "vite ./playground",
"build": "tsup",
"commit": "czg",
"prepublishOnly": "pnpm build",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:lint-staged": "lint-staged",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"pinia": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@types/node": "^20.10.5",
"@vitejs/plugin-vue": "^5.0.0",
"@wsvaio/commitlint-config": "^0.0.9",
"@wsvaio/eslint-config": "^1.0.4",
"czg": "^1.8.0",
"eslint": "^8.56.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vue": "^3.3.13",
"vue-tsc": "^1.8.27"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@wsvaio/utils": "latest"
}
}