-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "webext-zustand",
"version": "0.2.0",
"description": "Use zustand to share state between pages and background in web extensions.",
"license": "MIT",
"author": "Sinan Bekar <[email protected]> (https://sinan.engineer)",
"repository": {
"type": "git",
"url": "git+https://github.com/sinanbekar/webext-zustand.git"
},
"bugs": {
"url": "https://github.com/sinanbekar/webext-zustand/issues"
},
"homepage": "https://github.com/sinanbekar/webext-zustand#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"tsup-build": "tsup src/index.ts --format cjs,esm --dts",
"build": "pnpm tsup-build --dts-resolve",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@eduardoac-skimlinks/webext-redux": "3.0.1-release-candidate"
},
"peerDependencies": {
"zustand": "^4"
},
"devDependencies": {
"@types/chrome": "^0.0.245",
"tsup": "7.0.0",
"typescript": "4.9.5",
"zustand": "4.4.1"
}
}