forked from aklinker1/webext-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 933 Bytes
/
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
{
"name": "webext-core",
"private": true,
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:test": "vitest -r docs",
"build": "turbo run build",
"prepare": "husky install"
},
"devDependencies": {
"@aklinker1/generate-changelog": "*",
"@algolia/client-search": "^4.17.0",
"@types/prettier": "^2.7.2",
"@types/webextension-polyfill": "^0.9.1",
"@webext-core/fake-browser": "workspace:*",
"chokidar": "^3.5.3",
"husky": "^8.0.1",
"listr2": "^6.4.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-morph": "^16.0.0",
"turbo": "^1.6.3",
"vitepress": "1.0.0-alpha.75",
"vitest": "^0.29.2",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"linkedom": "^0.14.26"
}
}