-
Notifications
You must be signed in to change notification settings - Fork 448
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.49 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.49 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
{
"name": "@clerk/testing",
"version": "2.0.12",
"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"
}
},
"./playwright/unstable": {
"import": {
"types": "./dist/types/playwright/unstable/index.d.ts",
"default": "./dist/playwright/unstable/index.mjs"
},
"require": {
"types": "./dist/types/playwright/unstable/index.d.ts",
"default": "./dist/playwright/unstable/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",
"dev:pub": "pnpm dev -- --env.publish",
"format": "node ../../scripts/format-package.mjs",
"format:check": "node ../../scripts/format-package.mjs --check",
"lint": "eslint src",
"test": "vitest"
},
"dependencies": {
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"dotenv": "17.2.2"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"cypress": "^14.5.4"
},
"peerDependencies": {
"@playwright/test": "^1",
"cypress": "^13 || ^14"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
},
"cypress": {
"optional": true
}
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
}
}