-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "@tagproject/base-shared-config",
"version": "4.0.6",
"description": "Base shared config for tagproject packages",
"license": "MIT",
"homepage": "https://github.com/tagproject/base-shared-config#readme",
"author": "Daniil Ryazanov <kein@tagproject.ru>",
"keywords": [
"base",
"config",
"shared"
],
"bugs": "https://github.com/keindev/base-shared-config/issues",
"types": "./lib/index.d.ts",
"type": "module",
"exports": "./lib/index.js",
"bin": {
"base-shared-config": "bin/base-shared-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tagproject/base-shared-config.git"
},
"engines": {
"node": ">=15.14.0",
"npm": ">=7.7.6"
},
"scripts": {
"build": "standard-shared-config build",
"generate": "run-s generate:*",
"generate:changelog": "changelog generate --bump",
"lint": "run-s lint:*",
"lint:spell": "cspell -c .vscode/cspell.json --no-summary \"**/*.{js,ts,tsx,md,yml,json}\"",
"prepare": "run-s prepare:*",
"prepare:config": "run-s build && node bin/base-shared-config",
"prepare:docs": "docs-shared-config",
"prepare:husky": "husky install",
"prepare:vscode": "vscode-shared-config",
"release": "run-s prepare lint build generate"
},
"dependencies": {
"standard-shared-config": "5.x"
},
"devDependencies": {
"@tagproject/docs-shared-config": "^3.0.2",
"@tagproject/vscode-shared-config": "^4.0.2"
},
"peerDependencies": {
"changelog-guru": "5.x",
"husky": "9.x",
"npm-run-all": "4.x"
}
}