-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.48 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
91
92
93
94
95
{
"name": "pinia-plugin-history",
"version": "1.3.0",
"description": "Create a history (undo/redo) in your pinia 🍍 stores!",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"sideEffects": false,
"author": {
"name": "Yasser Lahbibi",
"email": "[email protected]"
},
"scripts": {
"dev": "peeky open",
"release": "node scripts/release.mjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"test:open": "peeky open",
"test": "peeky run",
"lint": "prettier -c --parser typescript \"src/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --build ./tsconfig.json",
"build": "yarn build:esm & yarn build:iife & wait",
"build:esm": "tsup src/index.ts --format esm,cjs --dts --target es2020",
"build:iife": "tsup src/index.ts --format iife --minify --global-name PiniaHistory --target es2020"
},
"files": [
"dist/*.js",
"dist/*.mjs",
"dist/*.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"pinia",
"plugin",
"history",
"undo",
"redo"
],
"license": "MIT",
"devDependencies": {
"@peeky/cli": "^0.3.0",
"@types/node": "^16.4.13",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"esbuild-register": "^2.6.0",
"execa": "^5.1.1",
"lint-staged": "^11.1.2",
"minimist": "^1.2.5",
"mock-local-storage": "^1.1.17",
"nyc": "^15.1.0",
"pinia": "^2.0.0-rc.3",
"prettier": "^2.0.5",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"tsup": "^4.13.1",
"typescript": "^4.3.5",
"vue": "^3.2.0-beta.7",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.?(m)js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yassilah/pinia-plugin-history.git"
},
"bugs": {
"url": "https://github.com/yassilah/pinia-plugin-history/issues"
},
"homepage": "https://github.com/yassilah/pinia-plugin-history#readme",
"dependencies": {
"lzutf8": "^0.6.0"
}
}