-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.36 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "robo-wizard-monorepo",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/HipsterBrown/robo-wizard.git"
},
"author": "HipsterBrown <headhipster@hipsterbrown.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HipsterBrown/robo-wizard/issues"
},
"homepage": "http://robo-wizard.js.org",
"packageManager": "pnpm@7.0.0",
"engines": {
"node": "^14.15.0 || >= 16.0.0",
"pnpm": ">=7.0.0"
},
"scripts": {
"build": "pnpm --filter \"./packages/**\" build",
"build:docs": "pnpm --filter docs build",
"start:docs": "pnpm --filter docs start",
"lint": "eslint \"packages/**/src/**/*.ts\"",
"test": "pnpm --filter \"./packages/**\" test",
"semantic-release": "multi-semantic-release"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@qiwi/multi-semantic-release": "^6.1.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node16-strictest-esm": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"tslib": "^2.4.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"pnpm": {
"overrides": {
"node-notifier@<8.0.1": ">=8.0.1",
"marked@<4.0.10": ">=4.0.10"
},
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"react",
"react-dom"
]
}
},
"release": {
"branches": [
{
"name": "main"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
"package.json",
"CHANGELOG.md",
"packages/**/dist/**"
]
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}