generated from vantezzen/plasmo-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "@vantezzen/plasmo-state",
"version": "2.1.3",
"description": "♻️ Sync state across content script, background workers and the popup in Plasmo extensions",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "run-p dev:*",
"dev:compile": "tsup src/index.ts --format esm --watch --sourcemap",
"dev:test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"dev:example": "cd example && plasmo dev --target=chrome-mv3",
"build": "tsup src/index.ts --format esm --minify --clean --dts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "pnpm build"
},
"author": "vantezzen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/vantezzen/plasmo-state.git"
},
"license": "MIT",
"keywords": [
"plasmo",
"browser-extension",
"react",
"template"
],
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18"
},
"devDependencies": {
"@jest/globals": "28.1.2",
"@jest/types": "28.1.1",
"@plasmohq/rps": "latest",
"@testing-library/react": "13.3.0",
"@trivago/prettier-plugin-sort-imports": "3.2.0",
"@types/chrome": "0.0.191",
"@types/node": "18.0.1",
"@types/react": "18.0.14",
"cross-env": "7.0.3",
"events": "^3.3.0",
"jest": "28.1.2",
"jest-environment-jsdom": "28.1.2",
"plasmo": "^0.84.1",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "3.0.2",
"ts-jest": "28.0.5",
"tsup": "6.1.3",
"typescript": "4.7.4"
},
"dependencies": {
"@plasmohq/storage": "^0.8.1",
"@types/webextension-polyfill": "^0.9.0",
"debug": "^4.3.4",
"webextension-polyfill": "^0.9.0"
}
}