-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 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
{
"name": "@propelauth/cli",
"version": "0.0.3",
"description": "PropelAuth CLI tool",
"homepage": "https://www.propelauth.com",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"propelauth": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && copyfiles -u 1 templates/**/* dist/templates",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"author": "Andrew Israel",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.7.0",
"@propelauth/backend-js-utilities": "^0.3.0",
"@propelauth/node": "^2.1.20",
"commander": "^12.1.0",
"diff": "^7.0.0",
"dotenv": "^16.4.5",
"is-unicode-supported": "^2.0.0",
"picocolors": "^1.0.1",
"ts-morph": "^25.0.1",
"untildify": "^5.0.0"
},
"devDependencies": {
"@types/diff": "^7.0.1",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^3.0.8",
"copyfiles": "^2.4.1",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
}
}