forked from ChrRubin/svelte-webext-stores
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "@livetl/svelte-webext-stores",
"version": "0.0.14",
"description": "Svelte stores that synchronizes to WebExtension storage.",
"keywords": [
"svelte",
"store",
"webextension",
"webext",
"firefox",
"chrome",
"chrome-extension",
"mv3",
"browser"
],
"homepage": "https://github.com/ChrRubin/svelte-webext-stores",
"bugs": "https://github.com/ChrRubin/svelte-webext-stores/issues",
"author": {
"name": "ChrRubin",
"url": "https://github.com/ChrRubin"
},
"repository": {
"type": "git",
"url": "https://github.com/ChrRubin/svelte-webext-stores"
},
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest src"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist",
"src"
],
"devDependencies": {
"@tsconfig/svelte": "^2.0.1",
"@types/chrome": "^0.0.161",
"@types/jest": "^27.0.2",
"@types/webextension-polyfill": "^0.8.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"jest": "^27.3.1",
"jest-localstorage-mock": "^2.4.18",
"jest-webextension-mock": "^3.7.19",
"rollup": "^2.58.3",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-typescript2": "^0.34.0",
"svelte": "^3.44.0",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4"
},
"peerDependencies": {
"svelte": "^3.0.0"
},
"sideEffects": false
}