-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@pansy/store",
"version": "1.1.0",
"description": "前端存储解决方案",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "vitest ./src/store.test.ts",
"release:dry": "release-it --dry-run --no-npm",
"release": "release-it",
"typecheck": "tsc --noEmit"
},
"files": [
"dist",
"src"
],
"keywords": [
"localStorage",
"sessionStorage",
"cookie",
"web"
],
"authors": [
"wangxingkang <wang_xingkang@qq.com> (https://github.com/wangxingkang)"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@release-it/conventional-changelog": "^7.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"release-it": "^16.1.3",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"vitest-localstorage-mock": "^0.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}