-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.62 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
68
69
70
71
{
"name": "open-message",
"version": "1.0.4",
"description": "Template-first messaging tool for Slack, Notion, and more",
"keywords": [
"slack",
"notion",
"messaging",
"notifications",
"templates",
"cli"
],
"homepage": "https://github.com/cdaviis/open-message#readme",
"bugs": {
"url": "https://github.com/cdaviis/open-message/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdaviis/open-message.git"
},
"license": "MIT",
"author": "cdaviis",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"open-message": "dist/cli/index.js"
},
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli/index.ts",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.4.0",
"js-yaml": "^4.1.0",
"ky": "^1.7.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"tsup": "^8.1.0",
"tsx": "^4.15.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}