-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.08 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": "ember-link",
"version": "3.0.0",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:buschtoens/ember-link.git"
},
"license": "MIT",
"scripts": {
"build": "pnpm --filter ember-link build",
"build:docs": "pnpm docs:api && pnpm docs:build",
"docs:api": "pnpm --filter ember-link api",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "pnpm --filter ember-link start",
"start:test-app": "pnpm --filter test-app start"
},
"devDependencies": {
"concurrently": "^9.1.0",
"release-plan": "^0.10.0",
"vitepress": "^1.5.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.*"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
}
}