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
40 lines (40 loc) · 1005 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1005 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
{
"name": "@clerk/dev-cli",
"version": "0.0.12",
"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": {
"format": "node ../../scripts/format-package.mjs",
"format:check": "node ../../scripts/format-package.mjs --check",
"lint": "eslint src"
},
"dependencies": {
"commander": "^14.0.1",
"concurrently": "^9.2.1",
"dotenv": "^17.2.2",
"globby": "^14.1.0",
"jscodeshift": "^17.3.0"
},
"devDependencies": {},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}