forked from lindylearn/unclutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "unclutter",
"private": true,
"dependencies": {
"approx-string-match": "^2.0.0",
"crypto-js": "^4.1.1",
"lodash": "^4.17.21",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-textarea-autosize": "^8.3.3",
"react-transition-group": "^4.4.2",
"recharts": "^2.1.9",
"seedrandom": "^3.0.5",
"svelte": "^3.46.6",
"timeago.js": "^4.0.2",
"tinycolor2": "^1.4.2",
"webext-options-sync": "^2.0.1",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@playwright/test": "1.20.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@tsconfig/svelte": "^3.0.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/react-transition-group": "^4.4.4",
"@types/webextension-polyfill": "^0.8.3",
"autoprefixer": "^10.4.2",
"buffer": "^6.0.3",
"node-fetch": "^3.2.5",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"postcss": "^8.4.12",
"postinstall-postinstall": "^2.1.0",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-svelte": "^2.7.0",
"process": "^0.11.10",
"puppeteer": "^14.3.0",
"querystring-es3": "^0.2.1",
"rollup": "^2.70.1",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.1.0",
"stylelint": "^13.13.1",
"stylelint-config-xo": "^0.20.0",
"svelte-check": "^2.5.0",
"svelte-preprocess": "^4.10.5",
"tailwindcss": "^3.0.23",
"ts-node": "^10.8.1",
"typescript": "^4.6.3",
"url": "^0.11.0",
"xo": "^0.44.0"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js -w",
"install-v3-manifest": "cp source/manifest.json distribution/manifest.json",
"install-v2-manifest": "cp source/manifest_v2.json distribution/manifest.json",
"package": "yarn build && npx web-ext build -o -n extension_manifest-v3.zip --ignore-files '!node_modules' '!node_modules/**' && yarn install-v2-manifest && npx web-ext build -o -n extension_manifest-v2.zip --ignore-files '!node_modules' '!node_modules/**' && yarn install-v3-manifest",
"test": "npx ts-node-esm test/main.ts"
},
"browserslist": "last 1 version",
"xo": {
"envs": [
"browser"
],
"rules": {
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "browser"
}
]
}
},
"stylelint": {
"extends": "stylelint-config-xo"
},
"webExt": {
"sourceDir": "distribution"
},
"type": "module",
"engines": {
"node": ">=16.x"
}
}