-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.28 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.28 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
{
"name": "@clerk/clerk-js",
"version": "5.52.3",
"description": "Clerk JS library",
"keywords": [
"clerk",
"auth",
"authentication",
"passwordless",
"session",
"jwt"
],
"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/clerk-js"
},
"license": "MIT",
"author": "Clerk",
"main": "dist/clerk.js",
"jsdelivr": "dist/clerk.browser.js",
"module": "dist/clerk.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"headless",
"no-rhc"
],
"scripts": {
"build": "pnpm build:bundle && pnpm build:declarations",
"postbuild": "node ../../scripts/search-for-rhc.mjs file dist/clerk.no-rhc.mjs",
"build:analyze": "rspack build --config rspack.config.js --env production --env variant=\"clerk.browser\" --env analysis --analyze",
"build:bundle": "pnpm clean && rspack build --config rspack.config.js --env production",
"build:declarations": "tsc -p tsconfig.declarations.json",
"build:sandbox": "rspack build --config rspack.config.js --env production --env sandbox",
"build:stats": "rspack build --config rspack.config.js --env production --json=stats.json --env variant=\"clerk.browser\"",
"bundlewatch": "pnpm dlx bundlewatch --config bundlewatch.config.json",
"clean": "rimraf ./dist",
"dev": "rspack serve --config rspack.config.js",
"dev:headless": "rspack serve --config rspack.config.js --env variant=\"clerk.headless.browser\"",
"dev:sandbox": "rspack serve --config rspack.config.js --env devOrigin=http://localhost:4000 --env sandbox=1",
"lint": "eslint src",
"lint:attw": "attw --pack .",
"lint:publint": "publint || true",
"test": "jest",
"test:cache:clear": "jest --clearCache --useStderr",
"test:ci": "jest --maxWorkers=70%",
"test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html",
"watch": "rspack build --config rspack.config.js --env production --watch"
},
"browserslist": "last 2 years, Safari > 12, iOS > 12",
"dependencies": {
"@clerk/localizations": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"@coinbase/wallet-sdk": "4.3.0",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.1",
"@floating-ui/react": "0.25.4",
"@floating-ui/react-dom": "^2.0.2",
"@formkit/auto-animate": "^0.8.1",
"@swc/helpers": "^0.5.13",
"@zxcvbn-ts/core": "3.0.4",
"@zxcvbn-ts/language-common": "3.0.4",
"browser-tabs-lock": "1.2.15",
"copy-to-clipboard": "3.3.3",
"core-js": "3.26.1",
"crypto-js": "^4.2.0",
"dequal": "2.0.3",
"qrcode.react": "3.1.0",
"regenerator-runtime": "0.13.11"
},
"devDependencies": {
"@clerk/ui": "workspace:*",
"@rsdoctor/rspack-plugin": "^0.4.13",
"@rspack/cli": "^1.2.2",
"@rspack/core": "^1.2.2",
"@rspack/plugin-react-refresh": "^1.0.1",
"@svgr/webpack": "^6.5.1",
"@types/webpack-env": "^1.18.8",
"webpack-merge": "^5.10.0"
},
"peerDependencies": {
"react": "catalog:peer-react",
"react-dom": "catalog:peer-react"
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}