-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.12 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.12 KB
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
{
"name": "@pimlico/webhook",
"version": "0.0.6",
"author": "Pimlico",
"main": "./_cjs/index.js",
"module": "./_esm/index.js",
"types": "./_types/index.d.ts",
"typings": "./_types/index.d.ts",
"type": "module",
"sideEffects": false,
"description": "A utility library for working with Pimlico webhooks.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --project ./../../tsconfig/tsconfig.webhook.cjs.json && tsc-alias -p ./../../tsconfig/tsconfig.webhook.cjs.json && printf '{\"type\":\"commonjs\"}' > ./_cjs/package.json",
"build:esm": "tsc --project ./../../tsconfig/tsconfig.webhook.esm.json && tsc-alias -p ./../../tsconfig/tsconfig.webhook.esm.json && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./_esm/package.json"
},
"devDependencies": {
"typescript": "^5.7.2",
"viem": "^2.21.52"
},
"peerDependencies": {
"viem": "^2.21.52"
},
"dependencies": {
"base-x": "^5.0.1",
"svix": "^1.42.0"
}
}