-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.84 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
{
"name": "@webext-pegasus/monorepo",
"description": "Communication framework for browser extension, with wings!",
"version": "0.0.1",
"license": "MIT",
"private": true,
"workspaces": [
"packages/transport",
"packages/rpc",
"packages/store",
"packages/store-zustand",
"packages/example-extension"
],
"engines": {
"npm": ">=8.2.3"
},
"engineStrict": true,
"scripts": {
"tsc": "tsc && npm run tsc --workspace example-extension",
"prepare": "husky install",
"build": "npm run build --workspaces",
"lint": "eslint ./",
"lint:sarif": "npm run lint -- --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"prettier": "prettier --list-different .",
"prettier:fix": "prettier --write .",
"link": "npm link --workspaces",
"bump-version": "lerna version --force-publish --no-push",
"publish": "npm publish --workspaces --access public",
"test:unit": "jest --selectProjects unit --testPathPattern",
"test:unit:coverage": "npm run test:unit -- --collect-coverage",
"test:unit:watch": "npm run test-unit -- --watch --coverage=''",
"test:unit:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --collectCoverage=false"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/jest": "^29.4.0",
"@types/jsdom": "^21.1.6",
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"child-process-promise": "^2.2.1",
"concurrently": "^6.2.0",
"confusing-browser-globals": "^1.0.10",
"eslint": "^8.0.0",
"eslint-config-fbjs": "^4.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-ft-flow": "^2.0.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-function-declare-after-return": "^1.1.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"fs-extra": "^10.0.0",
"husky": "^7.0.1",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"lint-staged": "^11.2.6",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"prettier-plugin-organize-attributes": "^0.0.5",
"size-limit": "^8.1.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"tsup": "^8.0.2",
"typedoc": "^0.25.12",
"typescript": "5.4.5"
}
}