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
76 lines (76 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.76 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
{
"name": "@clerk/clerk-sdk-node",
"version": "5.0.63",
"description": "Clerk server SDK for usage with node",
"keywords": [
"clerk",
"sdk",
"node"
],
"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/sdk-node"
},
"license": "MIT",
"author": {
"name": "Clerk, Inc.",
"email": "support@clerk.com",
"url": "git+https://github.com/clerk/javascript.git"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsup",
"dev": "tsup --watch",
"dev:publish": "npm run dev -- --env.publish",
"publish:local": "npx yalc push --replace --sig",
"clean": "rimraf ./dist",
"lint": "eslint src/",
"lint:publint": "publint",
"lint:attw": "attw --pack .",
"test": "jest",
"test:cache:clear": "jest --clearCache --useStderr",
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "1.16.2",
"@clerk/shared": "2.12.1",
"@clerk/types": "4.32.0",
"tslib": "2.4.1"
},
"devDependencies": {
"@clerk/eslint-config-custom": "*",
"@types/express": "^4.17.21",
"@types/node": "^18.19.33",
"nock": "^13.0.7",
"npm-run-all": "^4.1.5",
"tsup": "*",
"typescript": "*"
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}