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
42 lines (42 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 999 Bytes
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
{
"name": "@clerk/dev-cli",
"version": "0.0.10",
"description": "CLI tool designed to simplify the process of iterating on packages within the clerk/javascript repository",
"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/dev-cli"
},
"license": "MIT",
"author": "Clerk",
"type": "module",
"main": "bin/cli.js",
"bin": {
"clerk-dev": "bin/cli.js"
},
"scripts": {
"lint": "eslint src/"
},
"dependencies": {
"commander": "^12.1.0",
"concurrently": "^9.0.1",
"dotenv": "^16.4.5",
"globby": "^14.0.2",
"jscodeshift": "^0.16.1"
},
"devDependencies": {
"@clerk/eslint-config-custom": "workspace:*",
"@types/node": "^20.14.8",
"typescript": "catalog:repo"
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}