generated from sinanbekar/browser-extension-react-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.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
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
94
95
96
97
98
99
100
101
102
{
"name": "browser-extension-tiddlywiki-collector",
"private": true,
"version": "0.6.0",
"type": "module",
"scripts": {
"dev": "run-s clean && vite build -w",
"build:firefox": "node scripts/unstable_mv3ToMv2Build.js",
"build": "run-s clean && tsc && vite build && run-s build:firefox && run-p bundle:*",
"bundle:chrome": "web-ext build -s dist -a bundle -o -n tiddlywiki-collector-chrome.zip",
"bundle:firefox": "web-ext build -s dist-firefox -a bundle -o -n tiddlywiki-collector-firefox.zip",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"clean:bundle": "rimraf bundle",
"clean:dist-firefox": "rimraf dist-firefox",
"format": "run-p format:*",
"format:eslint": "run-s \" lint:eslint --fix \"",
"format:dprint": "run-s \" lint:dprint fmt \"",
"lint": "run-p lint:*",
"lint:eslint": "eslint . --ext .js,.ts,.tsx --max-warnings 0 --ignore-path .gitignore",
"lint:dprint": "dprint fmt",
"lint:type": "tsc --noEmit",
"test": "jest",
"ci:test": "run-s \" test --ci --reporters=\"default\" --reporters=\"github-actions\" \"",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@mozilla/readability": "0.5.0",
"@twind/core": "1.1.3",
"@twind/preset-autoprefix": "1.0.7",
"@twind/preset-tailwind": "1.1.4",
"beautiful-react-hooks": "5.0.1",
"fast-deep-equal": "3.1.3",
"i18next": "23.7.16",
"i18next-browser-languagedetector": "7.2.0",
"immer": "10.0.3",
"just-debounce": "1.1.0",
"md-to-tid": "0.1.0",
"mdast": "3.0.0",
"mdast-util-from-markdown": "2.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-frame-component": "5.2.6",
"react-i18next": "14.0.0",
"react-select": "5.8.0",
"react-tabs": "6.0.2",
"react-toastify": "9.1.3",
"redux-persist-webextension-storage": "1.0.2",
"rehype-parse": "9.0.0",
"rehype-remark": "10.0.0",
"remark-gfm": "4.0.0",
"remark-pangu": "2.2.0",
"remark-stringify": "11.0.0",
"tiny-delay": "1.2.0",
"type-fest": "4.9.0",
"unified": "11.0.4",
"unist-util-visit": "5.0.0",
"webext-zustand": "0.2.0",
"webextension-polyfill": "0.10.0",
"zustand": "4.4.7"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.21",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.2",
"@types/chrome": "0.0.256",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.11",
"@types/mdast": "4.0.3",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"@types/redux-persist-webextension-storage": "1.0.3",
"@types/webextension-polyfill": "0.10.7",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "10.4.16",
"construct-style-sheets-polyfill": "3.1.0",
"dprint": "0.45.0",
"eslint": "8.56.0",
"eslint-config-tidgi": "1.1.5",
"fs-extra": "11.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-chrome": "0.8.0",
"jest-environment-jsdom": "29.7.0",
"nano-staged": "0.8.0",
"npm-run-all2": "6.1.1",
"postcss": "8.4.33",
"rimraf": "5.0.5",
"simple-git-hooks": "2.9.0",
"tailwindcss": "3.4.1",
"tiddlywiki": "5.3.3",
"ts-jest": "29.1.1",
"tw5-typed": "0.4.4",
"typescript": "5.3.3",
"vite": "5.0.11",
"web-ext": "7.10.0"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}