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
96 lines (96 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.11 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
{
"name": "@clerk/testing",
"version": "1.3.26",
"description": "Utilities to help you create E2E test suites for apps using Clerk",
"keywords": [
"auth",
"authentication",
"passwordless",
"session",
"jwt",
"playwright",
"cypress",
"testing",
"e2e"
],
"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/testing"
},
"license": "MIT",
"author": "Clerk",
"sideEffects": false,
"exports": {
"./playwright": {
"import": {
"types": "./dist/types/playwright/index.d.ts",
"default": "./dist/playwright/index.mjs"
},
"require": {
"types": "./dist/types/playwright/index.d.ts",
"default": "./dist/playwright/index.js"
}
},
"./cypress": {
"import": {
"types": "./dist/types/cypress/index.d.ts",
"default": "./dist/cypress/index.mjs"
},
"require": {
"types": "./dist/types/cypress/index.d.ts",
"default": "./dist/cypress/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"playwright",
"cypress"
],
"scripts": {
"build": "tsup --env.NODE_ENV production",
"clean": "rimraf ./dist",
"dev": "tsup --watch",
"lint": "eslint src/"
},
"dependencies": {
"@clerk/backend": "1.16.4",
"@clerk/shared": "2.14.0",
"@clerk/types": "4.34.0",
"dotenv": "16.4.5"
},
"devDependencies": {
"@clerk/eslint-config-custom": "workspace:*",
"@playwright/test": "^1.44.0",
"@types/node": "^18.19.33",
"cypress": "^13.9.0",
"tsup": "*",
"typescript": "*"
},
"peerDependencies": {
"@playwright/test": "^1",
"cypress": "^13"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
},
"cypress": {
"optional": true
}
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}