generated from thaitype/npm-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "trpc-azure-functions-adapter",
"version": "0.0.5",
"description": "tRPC Azure Functions Adapter",
"main": "./dist/main.js",
"module": "./dist/main.mjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.mjs",
"default": "./dist/main.js"
}
},
"files": [
"dist/**",
"src/**"
],
"scripts": {
"dev": "pnpm --filter \"trpc-azure-functions-adapter\" dev",
"all": "pnpm --filter \"trpc-azure-functions-adapter\" all",
"release": "npm run all && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"ava": "^5.1.1",
"c8": "^7.12.0",
"esbuild-register": "^3.4.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"tsup": "^6.6.3",
"@trpc/server": "^10.40.0",
"@azure/functions": "^4.5.0",
"typescript": "^5.0.2",
"zod": "^3.22.4"
},
"keywords": [],
"author": "Thada Wangthammang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thaitype/trpc-azure-functions-adapter.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"esbuild-register"
]
}
}