-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
70 lines (70 loc) · 1.94 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
70
{
"name": "reduxed-chrome-storage",
"version": "3.0.10",
"description": "Redux interface to chrome.storage (browser.storage). A unified way to use Redux in all modern browser extensions. The only way to get Redux working in Manifest V3 Chrome extensions",
"license": "MIT",
"author": "Savr Goryaev aka hindmost",
"repository": "github:hindmost/reduxed-chrome-storage",
"bugs": "https://github.com/hindmost/reduxed-chrome-storage/issues",
"keywords": [
"redux",
"chrome",
"extension",
"chrome-extension",
"storage",
"chrome-storage",
"browser-extension",
"webextension",
"store",
"state"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"uuid": "^8.3"
},
"peerDependencies": {
"redux": "^4"
},
"devDependencies": {
"chai": "^4.3",
"eslint": "^8.23",
"eslint-import-resolver-typescript": "^3.5",
"eslint-plugin-import": "^2.26",
"mocha": "^10.0",
"redux": "^4.2",
"@reduxjs/toolkit": "1.8",
"rollup": "^2.79",
"@rollup/plugin-buble": "^0.21",
"rollup-plugin-delete": "^2.0",
"rollup-plugin-license": "^2.8",
"@rollup/plugin-node-resolve": "13.3",
"rollup-plugin-terser": "^7.0",
"rollup-plugin-typescript2": "^0.33",
"sinon": "^14.0",
"ts-mocha": "^10.0",
"typescript": "^4.8",
"@types/chai": "^4.3",
"@types/mocha": "^9.1",
"@types/node": "^18.7",
"@types/sinon": "^10.0",
"@types/uuid": "^8.3",
"@typescript-eslint/eslint-plugin": "^5.36",
"@typescript-eslint/parser": "^5.36"
},
"scripts": {
"prebuild": "npm run lint",
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src --ext .ts",
"lint:test": "eslint test --ext .ts",
"pretest": "npm run lint:test",
"test": "ts-mocha -p test/tsconfig.json test/*.ts",
"prepublishOnly": "npm run build"
}
}