-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.38 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
{
"name": "@extend-chrome/storage",
"version": "1.5.0",
"description": "This is a wrapper for the Chrome Extension Storage API that adds promises and functional set transactions similar to the React `this.setState` API. Functional set transactions make it easy to use the Chrome Storage API to share and manage state between different contexts in a Chrome Extension.",
"repository": "extend-chrome/storage",
"license": "MIT",
"author": "<jacksteamdev@gmail.com>",
"main": "lib/index-cjs.js",
"module": "lib/index-esm.js",
"types": "types/index.d.ts",
"files": [
"bucket",
"jest",
"lib",
"types"
],
"scripts": {
"build:pre": "rm -rf lib types hooks jest bucket",
"build": "run-p build:pre build:pro build:types build:copy",
"build:copy": "run-p build:copy:*",
"build:copy:bucket": "copyfiles -f src/bucket/package.json bucket",
"build:copy:jest": "copyfiles -f src/jest/package.json jest",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:pro": "rollup -c --environment NODE_ENV:production",
"build:types": "tsc -p tsconfig.d.json",
"prepublishOnly": "npm run build",
"postpublish": "rm -rf node_modules package-lock.json && pnpm i",
"start": "run-p start:*",
"start:rollup": "npm run build:dev -- -w",
"start:tsc": "tsc -b tsconfig.d.json -w",
"test:tsc": "tsc --noEmit",
"test:jest": "jest",
"test": "run-s build test:*"
},
"dependencies": {
"chrome-promise": "^3.0.5",
"rxjs": "^6.5.5 || ^7.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-typescript": "^4.1.2",
"@sucrase/jest-plugin": "^2.0.0",
"@types/chrome": "^0.0.142",
"@types/jest": "^25.2.3",
"@types/jest-in-case": "^1.0.2",
"@types/node": "^14.0.4",
"@types/puppeteer": "^3.0.0",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"copyfiles": "^2.2.0",
"delay": "^4.3.0",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.13.1",
"jest": "26.6.3",
"jest-in-case": "^1.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.10.5",
"rollup-plugin-copy2": "^0.2.0",
"rxjs": "^7.1.0",
"ts-jest": "^26.5.6",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}