-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.78 KB
/
package.json
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": "@dimkl/clerk-koa",
"version": "0.2.1",
"description": "Clerk server SDK for usage with Koa",
"keywords": [
"clerk",
"koa"
],
"homepage": "https://clerk.com/",
"bugs": {
"url": "https://github.com/dimkl/clerk-koa/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimkl/clerk-koa.git"
},
"license": "MIT",
"author": {
"name": "Clerk, Inc.",
"email": "[email protected]",
"url": "git+https://github.com/dimkl/clerk-koa.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/ --ext .ts",
"test": "jest",
"test:cache:clear": "jest --clearCache --useStderr",
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "^1.9.1",
"@clerk/shared": "^2.6.1",
"koa-compose": "^4.1.0",
"tslib": "2.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/koa": "^2.15.0",
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsup": "*",
"typescript": "*"
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}