-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "duplex-message-monorepo",
"version": "1.0.0",
"description": "makes one way message responsive, enhance postMessage/storageEvent/electron IPC/chrome extension scripts",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test -- run",
"lint": "eslint . --ext .ts"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint"
}
},
"repository": "https://[email protected]/oe/duplex-message.git",
"author": "Saiya",
"license": "MIT",
"homepage": "https://github.com/oe/duplex-message",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"cross-env": "^5.2.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^1.1.3"
},
"pnpm": {
"overrides": {
"typescript": "5.5.3"
}
},
"packageManager": "[email protected]"
}