-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.33 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@clerk/backend",
"version": "1.24.0",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"homepage": "https://clerk.com/",
"bugs": {
"url": "https://github.com/clerk/javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/javascript.git",
"directory": "packages/backend"
},
"license": "MIT",
"imports": {
"#crypto": {
"edge-light": "./dist/runtime/browser/crypto.mjs",
"worker": "./dist/runtime/browser/crypto.mjs",
"browser": "./dist/runtime/browser/crypto.mjs",
"node": {
"require": "./dist/runtime/node/crypto.js",
"import": "./dist/runtime/node/crypto.mjs"
},
"default": "./dist/runtime/browser/crypto.mjs"
}
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./errors": {
"import": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.mjs"
},
"require": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.js"
}
},
"./internal": {
"import": {
"types": "./dist/internal.d.ts",
"default": "./dist/internal.mjs"
},
"require": {
"types": "./dist/internal.d.ts",
"default": "./dist/internal.js"
}
},
"./jwt": {
"import": {
"types": "./dist/jwt/index.d.ts",
"default": "./dist/jwt/index.mjs"
},
"require": {
"types": "./dist/jwt/index.d.ts",
"default": "./dist/jwt/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"files": [
"dist",
"errors",
"internal",
"jwt"
],
"scripts": {
"build": "tsup",
"build:declarations": "tsc -p tsconfig.declarations.json",
"dev": "tsup --watch",
"dev:publish": "pnpm dev -- --env.publish",
"publish:local": "pnpm yalc push --replace --sig",
"build:lib": "tsup --env.NODE_ENV production",
"build:runtime": "cpy 'src/runtime/**/*.{mjs,js,cjs}' dist/runtime",
"clean": "rimraf ./dist",
"lint": "eslint src",
"lint:publint": "publint",
"lint:attw": "attw --pack . --ignore-rules false-cjs",
"test": "run-s test:node test:edge-runtime test:cloudflare-miniflare",
"test:node": "vitest run --environment node",
"test:edge-runtime": "vitest run --environment edge-runtime",
"test:cloudflare-miniflare": "vitest run --environment miniflare",
"test:watch": "run-s test:watch:node test:watch:edge-runtime test:watch:cloudflare-miniflare",
"test:watch:node": "vitest watch --environment node",
"test:watch:edge-runtime": "vitest watch --environment edge-runtime",
"test:watch:cloudflare-miniflare": "vitest watch --environment miniflare"
},
"dependencies": {
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"cookie": "1.0.2",
"snakecase-keys": "8.0.1",
"tslib": "catalog:repo"
},
"devDependencies": {
"@edge-runtime/vm": "5.0.0",
"msw": "2.7.0",
"npm-run-all": "^4.1.5",
"vitest-environment-miniflare": "2.14.4"
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}