-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.45 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
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
{
"author": "thirdweb eng <eng@thirdweb.com>",
"bugs": {
"url": "https://github.com/thirdweb-dev/js/issues"
},
"dependencies": {
"@confluentinc/kafka-javascript": "1.4.0",
"@paralleldrive/cuid2": "^2.2.2",
"aws4fetch": "1.0.20",
"zod": "3.25.75"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@cloudflare/workers-types": "4.20250704.0",
"@types/node": "22.14.1",
"@vitest/coverage-v8": "3.2.4",
"typescript": "5.8.3",
"vitest": "4.1.0"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./cf-worker": {
"types": "./dist/types/cf-worker/index.d.ts",
"import": "./dist/esm/cf-worker/index.js",
"default": "./dist/cjs/cf-worker/index.js"
},
"./node": {
"types": "./dist/types/node/index.d.ts",
"import": "./dist/esm/node/index.js",
"default": "./dist/cjs/node/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/"
],
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"name": "@thirdweb-dev/service-utils",
"repository": "https://github.com/thirdweb-dev/js/tree/main/packages/pay",
"scripts": {
"build": "pnpm clean && pnpm build:types && pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --noCheck --project ./tsconfig.build.json --module commonjs --outDir ./dist/cjs --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json",
"build:esm": "tsc --noCheck --project ./tsconfig.build.json --module es2020 --outDir ./dist/esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./dist/esm/package.json",
"build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
"clean": "rm -rf dist/",
"coverage": "vitest run --coverage",
"fix": "biome check ./src --fix",
"format": "biome format ./src --write",
"lint": "biome check ./src && tsc --project ./tsconfig.build.json --module esnext --noEmit",
"test": "vitest run"
},
"sideEffects": false,
"type": "module",
"types": "dist/types/index.d.ts",
"typesVersions": {
"*": {
"cf-worker": [
"./dist/types/cf-worker/index.d.ts"
],
"node": [
"./dist/types/node/index.d.ts"
]
}
},
"typings": "dist/types/index.d.ts",
"version": "0.10.10"
}