-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "pinia-persists",
"version": "1.2.0",
"description": "a pinia plugin for state persist.",
"keywords": [
"pinia",
"pinia plugin",
"persist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ouduidui/pinia-persists.git"
},
"author": "Dewey Ou <[email protected]>",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsup src/index.ts --sourcemap --watch --clean",
"build": "tsup src/index.ts --dts --minify --clean",
"test": "vitest",
"prepublish": "rimraf dist && npm run build",
"release": "npm run prepublish && npx bumpp --commit --push --tag",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix"
},
"bugs": {
"url": "https://github.com/ouduidui/pinia-persists/issues"
},
"homepage": "https://github.com/ouduidui/pinia-persists#readme",
"dependencies": {
"vue": "^3.2.33"
},
"devDependencies": {
"@ouduidui/eslint-config-ts": "^0.1.1",
"@types/node": "^17.0.23",
"@vue/test-utils": "^2.0.0-rc.17",
"eslint": "^8.12.0",
"jsdom": "^19.0.0",
"pinia": "^2.0.12",
"rimraf": "^3.0.2",
"tsup": "^5.12.1",
"typescript": "^4.6.3",
"vitest": "^0.8.0",
"vue": "^3.2.31"
}
}