-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "@squidfunk/mono",
"version": "0.0.0",
"description": "Mono repository utilities",
"homepage": "https://github.com/squidfunk/mono",
"bugs": {
"url": "https://github.com/squidfunk/mono/issues",
"email": "martin.donath@squidfunk.com"
},
"license": "MIT",
"private": true,
"author": {
"name": "Martin Donath",
"email": "martin.donath@squidfunk.com"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/squidfunk/mono.git"
},
"workspaces": [
"./editors/*",
"./packages/*",
"./presets/*"
],
"scripts": {
"prepare": "run-s --npm-path npm prepare:*",
"prepare:patch": "ts-patch install -s",
"prepare:hooks": "husky install",
"release": "run-s --npm-path npm release:*",
"release:version": "lerna version --create-release github",
"release:publish": "lerna publish from-package --yes",
"upgrade": "run-s --npm-path npm upgrade:*",
"upgrade:version": "lerna exec 'ncu --upgrade --filterVersion \"/^\\^/\"'",
"upgrade:install": "npm install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@types/node": "^20.10.4",
"copyfiles": "^2.4.1",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"lerna": "^8.0.0",
"npm-check-updates": "^16.14.11",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"ts-patch": "^3.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.x"
}
}