-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 842 Bytes
/
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
{
"name": "shango-deploy-root",
"version": "0.0.0",
"description": "Shango deploy monorepo",
"author": "devalade",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devalade/shango-deploy.git"
},
"bugs": {
"url": "https://github.com/devalade/shango-deploy/issues"
},
"keywords": [
"deploy",
"deployment",
"continous-deployment",
"automation"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"link-cli": "npm link || true && npm link",
"dev": "tsc -w",
"test": "vitest"
},
"workspaces": [
"packages/*",
"docs",
"!**/test/**",
"examples/*"
],
"devDependencies": {
"turbo": "^2.3.4",
"typescript": "^5.5.4",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.3"
}