-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "use-chrome-storage",
"version": "1.3.2",
"description": "Custom React hooks for `chrome.storage.` You may use it for keeping global persisted state in chrome extensions.",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"umd:main": "dist/index.umd.js",
"typings": "index.d.ts",
"scripts": {
"build": "microbundle --generateTypes false",
"dev": "microbundle watch --generateTypes false",
"release": "npm run build && np --no-yarn --no-cleanup",
"preview": "npm run build && np --no-yarn --no-cleanup --preview",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onikienko/use-chrome-storage"
},
"bugs": {
"url": "https://github.com/onikienko/use-chrome-storage/issues"
},
"homepage": "https://github.com/onikienko/use-chrome-storage#readme",
"author": {
"name": "Mykhailo Onikiienko",
"email": "michael.onikienko@gmail.com"
},
"keywords": [
"react hooks",
"chrome storage",
"browser storage",
"react state",
"chrome extension",
"browser extension"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^6.0.0",
"@types/chrome": "^0.0.293",
"babel-jest": "^26.6.3",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-chrome": "^0.8.0",
"microbundle": "^0.15.0",
"np": "^7.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {}
}