-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "no-more-shorts",
"private": true,
"version": "0.0.0-development",
"type": "module",
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && vite build && cp package.json dist/package.json",
"preview": "vite preview",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/github": "^9.0.5",
"@types/chrome": "^0.0.243",
"semantic-release": "^21.1.1",
"typescript": "^5.0.2",
"vite": "^4.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/odonatojunior/no-more-shorts.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "./extension.zip",
"label": "extension"
}
]
}
]
],
"repositoryUrl": "https://github.com/odonatojunior/no-more-shorts",
"publish": [
"@semantic-release/github"
]
}
}