-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "trpc-chrome",
"version": "1.0.0",
"description": "tRPC adapter for Web Extensions",
"author": "James Berry <jb@jamesbe.com>",
"private": false,
"license": "MIT",
"keywords": [
"trpc",
"chrome",
"extension",
"webext",
"webextension"
],
"homepage": "https://github.com/jlalmes/trpc-chrome",
"repository": "github:jlalmes/trpc-chrome",
"bugs": "https://github.com/jlalmes/trpc-chrome/issues",
"workspaces": [
".",
"examples/with-plasmo"
],
"scripts": {
"test": "tsc --noEmit && jest --verbose",
"build": "rimraf dist && rimraf adapter && rimraf link && rimraf types && tsc -p tsconfig.build.json && mv dist/* . && rimraf dist"
},
"peerDependencies": {
"@trpc/client": "^10.0.0",
"@trpc/server": "^10.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/chrome": "^0.0.203",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"superjson": "^1.11.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"zod": "^3.19.1"
}
}