-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.36 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
{
"name": "zustand-vault",
"version": "1.1.0",
"author": "bang9 <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:bang9/zustand-vault.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"source": "./src",
"react-native": "./src",
"files": [
"src",
"lib",
"!**/__tests__"
],
"sideEffects": false,
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"release": "release-it"
},
"peerDependencies": {
"zustand": ">=4.3.3"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"prettier": "^2.8.4",
"release-it": "^15.6.0",
"typescript": "^4.9.5",
"zustand": "^4.3.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"keywords": [
"react",
"state",
"manager",
"management",
"redux",
"store",
"zustand"
]
}