-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "pinia-plugin-logger",
"version": "0.0.3",
"description": "Logger for Pinia",
"author": "AGUMON <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"pinia",
"state",
"store",
"plugin",
"logger"
],
"source": "src/index.ts",
"main": "dist/pinia-plugin-logger.js",
"module": "dist/pinia-plugin-logger.es.js",
"unpkg": "dist/pinia-plugin-logger.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && microbundle --external all --name piniaPluginLogger",
"prepare": "npm run build",
"clean": "rm -rf ./dist"
},
"dependencies": {},
"devDependencies": {
"bundlesize": "^0.18.1",
"dayjs": "^1.11.7",
"husky": "^8.0.3",
"microbundle": "^0.15.1",
"pinia": "^2.0.34",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"pinia": "^2.0.0",
"vue": "^3.0.0"
},
"bundlesize": [
{
"path": "./dist/*.js",
"threshold": "800b"
}
],
"husky": {
"hooks": {
"pre-commit": "npm run build && pretty-quick --staged"
}
}
}