-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
59 lines (59 loc) · 1.59 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
53
54
55
56
57
58
59
{
"private": true,
"repository": {
"type": "git",
"url": "http://github.com/cibernox/ember-power-calendar.git"
},
"license": "MIT",
"author": "Miguel Camba",
"scripts": {
"build": "pnpm run --filter ember-power-calendar build",
"build:docs": "pnpm run --filter docs build",
"lint": "pnpm run --filter '*' lint",
"lint:fix": "pnpm run --filter '*' lint:fix",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm run --filter ember-power-calendar start --no-watch.clearScreen",
"start:docs": "pnpm run --filter docs start --preserveWatchOutput",
"start:test-app": "pnpm run --filter test-app start",
"test:ember": "pnpm --filter '*' test:ember"
},
"devDependencies": {
"@glint/core": "^1.5.0",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@release-it-plugins/workspaces": "^4.2.0",
"concurrently": "^9.1.0",
"prettier": "^3.3.3",
"prettier-plugin-ember-template-tag": "^2.0.4",
"release-it": "^17.10.0",
"typescript": "^5.6.3"
},
"workspaces": [
"ember-power-calendar",
"docs",
"test-app"
],
"engines": {
"node": ">= 18"
},
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": {
"workspaces": [
"ember-power-calendar"
]
},
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"version": "1.3.0"
}