-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 KB
/
package.json
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
{
"private": true,
"name": "mastodon-post-scheduler",
"version": "1.4.2",
"description": "a basic web ui for scheduling posts on mastodon",
"scripts": {
"postversion": "npm run build",
"start": "vite --port 80",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/seleb/mastodon-post-scheduler.git"
},
"author": "Sean S. LeBlanc <[email protected]>",
"license": "MIT",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"docs/**/*",
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
]
]
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"masto": "^6.8.0",
"prettier": "^2.8.8",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.63.6",
"vite": "^5.4.3",
"vite-plugin-markdown": "^2.2.0-2"
}
}