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
63 lines (63 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "@clerk/upgrade",
"version": "1.2.3",
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/javascript.git",
"directory": "packages/upgrade"
},
"license": "MIT",
"type": "module",
"main": "dist/cli.js",
"bin": {
"clerk-upgrade": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm clean && NODE_ENV=production babel --keep-file-extension --out-dir=dist src --copy-files",
"clean": "rm -rf dist/*",
"dev": "babel --keep-file-extension --out-dir=dist --watch src --copy-files",
"lint": "eslint src/",
"lint:publint": "publint",
"test": "vitest"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@jescalan/ink-markdown": "^2.0.0",
"ejs": "3.1.10",
"execa": "9.4.1",
"globby": "^14.0.1",
"gray-matter": "^4.0.3",
"index-to-position": "^0.1.2",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-link": "^4.1.0",
"jscodeshift": "^17.0.0",
"marked": "^11.1.1",
"meow": "^11.0.0",
"react": "catalog:react",
"read-pkg": "^9.0.1",
"semver-regex": "^4.0.5",
"temp-dir": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@clerk/eslint-config-custom": "workspace:*",
"@types/jscodeshift": "^0.12.0"
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}