-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "@example/my-plugin-root",
"type": "module",
"version": "0.1.0",
"workspaces": [
"demo",
"packages/*"
],
"scripts": {
"bump:patch": "npm --workspaces --git-tag-version false version patch && npm --git-tag-version false version patch",
"bump:minor": "npm --workspaces --git-tag-version false version minor && npm --git-tag-version false version minor",
"bump:major": "npm --workspaces --git-tag-version false version major && npm --git-tag-version false version major",
"start": "astro --project-root demo dev",
"build": "astro --project-root demo build",
"serve": "astro --project-root demo preview",
"release": "npm --workspaces publish --access public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true,
"overrides": [
{
"files": [
"*.json",
"*.md",
"*.stackblitzrc"
],
"options": {
"useTabs": false
}
}
]
},
"devDependencies": {
"astro": "latest"
},
"private": true
}