-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.47 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
{
"name": "@unlayer/cli",
"version": "0.1.0",
"description": "Command-line interface for Unlayer — manage templates, projects, and workspaces from your terminal",
"main": "dist/index.js",
"bin": {
"unlayer": "dist/index.js"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=24"
},
"repository": {
"type": "git",
"url": "https://github.com/unlayer/cli.git"
},
"homepage": "https://unlayer.com",
"bugs": {
"url": "https://github.com/unlayer/cli/issues"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "pnpm build && vitest run src/__tests__/e2e",
"test:watch": "vitest",
"prepublishOnly": "pnpm build && pnpm test"
},
"keywords": [
"unlayer",
"cli",
"email",
"templates",
"email-editor",
"drag-and-drop"
],
"author": "Unlayer",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@unlayer/sdk": "^0.1.0",
"commander": "^12.1.0",
"conf": "^13.0.1",
"ink": "^6.8.0",
"open": "^11.0.0",
"react": "^19.2.4",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/react": "^19.2.14",
"@types/update-notifier": "^6.0.8",
"tsup": "^8.3.0",
"typescript": "^5.4.2",
"vitest": "^4.0.18"
}
}