forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.52 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.52 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
{
"name": "@clerk/backend",
"version": "0.8.1-staging.3",
"license": "MIT",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"types": "./dist/types/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "run-s clean build:runtime build:lib",
"build:lib": "tsup --env.NODE_ENV production",
"build:tests": "tsc -p tsconfig.test.json",
"build:runtime": "mkdir -p dist/runtime && cp -r src/runtime/* dist/runtime",
"clean": "rimraf ./dist",
"lint": "eslint .",
"test": "run-s build:runtime build:tests test:node test:edge-runtime test:cloudflare-miniflare",
"test:node": "./tests/node/run.sh",
"test:edge-runtime": "./tests/edge-runtime/run.sh",
"test:cloudflare-miniflare": "tests/cloudflare-miniflare/run.sh",
"test:cloudflare-workerd": "tests/cloudflare-workerd/run.sh"
},
"dependencies": {
"@clerk/types": "^3.28.2-staging.1",
"@peculiar/webcrypto": "1.4.1",
"@types/node": "16.18.6",
"deepmerge": "4.2.2",
"node-fetch-native": "1.0.1",
"rfc4648": "1.5.2",
"snakecase-keys": "5.4.4",
"tslib": "2.4.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@types/chai": "^4.3.3",
"@types/qunit": "^2.19.3",
"@types/sinon": "^10.0.13",
"chai": "^4.3.6",
"edge-runtime": "^2.0.0",
"esbuild": "^0.15.12",
"esbuild-register": "^3.3.3",
"miniflare": "^2.11.0",
"npm-run-all": "^4.1.5",
"qunit": "^2.19.3",
"sinon": "^14.0.1",
"tsup": "*",
"typescript": "*",
"workerd": "1.20220926.3"
},
"publishConfig": {
"access": "public"
},
"imports": {
"#crypto": {
"edge-light": "./dist/runtime/browser/crypto.mjs",
"worker": "./dist/runtime/browser/crypto.mjs",
"browser": "./dist/runtime/browser/crypto.mjs",
"node": "./dist/runtime/node/crypto.js",
"default": "./dist/runtime/browser/crypto.mjs"
},
"#fetch": {
"edge-light": "./dist/runtime/browser/fetch.mjs",
"worker": "./dist/runtime/browser/fetch.mjs",
"browser": "./dist/runtime/browser/fetch.mjs",
"node": "./dist/runtime/node/fetch.js",
"default": "./dist/runtime/browser/fetch.mjs"
}
},
"homepage": "https://clerk.dev/",
"repository": {
"type": "git",
"url": "https://github.com/clerkinc/javascript.git"
},
"bugs": {
"url": "https://github.com/clerkinc/javascript/issues"
},
"engines": {
"node": ">=14"
}
}