-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "foca-cookie-storage",
"version": "0.0.1",
"repository": "git@github.com:foca-js/foca-cookie-storage.git",
"description": "Foca持久化cookie引擎",
"contributors": [
"罪 <fanwenhua1990@gmail.com> (https://github.com/geekact)"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest --runInBand",
"prepublishOnly": "tsup",
"prepare": "husky install"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md",
"CHANGELOG.md"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"foca": "^0.11.0"
},
"dependencies": {
"@types/cookie": "^0.5.1",
"cookie": "^0.5.0",
"lz-string": "^1.4.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@swc/core": "^1.2.194",
"@types/jest": "^27.5.1",
"@types/lz-string": "^1.3.34",
"@types/node": "^17.0.35",
"foca": "^0.12.1",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"tsup": "^6.0.1",
"typescript": "^4.7.2"
}
}