-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.42 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.42 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@programinglive/comingsoon",
"version": "1.0.7",
"description": "A sleek, terminal-inspired \"Coming Soon\" page with programmer vibes. Features matrix rain effects, typing animations, and a modern dark theme perfect for tech projects.",
"main": "index.html",
"bin": {
"comingsoon": "./cli.js"
},
"files": [
"index.html",
"style.css",
"script.js",
"netlify.toml",
"cli.js",
"template"
],
"scripts": {
"test": "echo \"No tests specified\"",
"prepare": "husky",
"release": "node scripts/release.cjs",
"release:major": "node scripts/release.cjs major",
"release:minor": "node scripts/release.cjs minor",
"release:patch": "node scripts/release.cjs patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/programinglive/comingsoon.git"
},
"keywords": [
"coming-soon",
"landing-page",
"template",
"programmer",
"matrix",
"terminal",
"dark-theme",
"netlify"
],
"author": "mahatma mahardhika <mahatma.mahardhika@programinglive.com>",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/programinglive/comingsoon/issues"
},
"homepage": "https://comingsoon.programinglive.com",
"dependencies": {
"@programinglive/commiter": "^1.2.8"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"husky": "^9.1.7",
"standard-version": "^9.5.0"
},
"standard-version": {
"releaseCommitMessageFormat": "chore(release): {{currentTag}} 🚀",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "perf",
"section": "⚡ Performance"
},
{
"type": "refactor",
"section": "♻️ Refactors"
},
{
"type": "docs",
"section": "📝 Documentation"
},
{
"type": "style",
"section": "💄 Styles"
},
{
"type": "test",
"section": "✅ Tests"
},
{
"type": "build",
"section": "🏗️ Build System"
},
{
"type": "ci",
"section": "👷 Continuous Integration"
},
{
"type": "chore",
"section": "🧹 Chores"
},
{
"type": "revert",
"section": "⏪ Reverts"
}
]
}
}