-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 KB
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
{
"name": "pinia-plugin-logger",
"version": "1.3.0",
"description": "Logger for Pinia",
"author": "AGUMON <ljlm0402@gmail.com>",
"license": "MIT",
"keywords": [
"vue",
"pinia",
"state",
"store",
"plugin",
"logger"
],
"main": "dist/piniaPluginLogger.js",
"module": "dist/piniaPluginLogger.mjs",
"types": "dist/piniaPluginLogger.d.ts",
"exports": {
".": {
"import": "./dist/piniaPluginLogger.mjs",
"require": "./dist/piniaPluginLogger.js",
"types": "./dist/piniaPluginLogger.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup src/piniaPluginLogger.ts --format cjs,esm --dts",
"clean": "rimraf dist",
"prepare": "npm run build"
},
"devDependencies": {
"pinia": "^3.0.1",
"vue": "^3.2.0",
"typescript": "^5.7.3",
"tsup": "^7.3.0",
"rimraf": "^6.0.1",
"prettier": "^3.5.2",
"pretty-quick": "^4.0.0"
},
"peerDependencies": {
"pinia": "^2.0.0 || ^3.0.0",
"vue": "^3.2.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ljlm0402/pinia-plugin-logger.git"
},
"bugs": {
"url": "https://github.com/ljlm0402/pinia-plugin-logger/issues"
},
"homepage": "https://github.com/ljlm0402/pinia-plugin-logger#readme"
}