-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.16 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.16 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@captive/project-config-src",
"version": "1.0.0-alpha.0",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:Captive-Studio/es-project-config.git"
},
"license": "UNLICENSED",
"type": "commonjs",
"files": [],
"workspaces": {
"packages": [
"packages/*",
"extensions/*"
],
"nohoist": [
"/eslint",
"/eslint-plugin-prettier"
]
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"code-analysis": ":",
"configure": "npm run mrm -- configure",
"coverage": ":",
"develop": ":",
"docs": "turbo run docs",
"docs:root": "node ./markdown.mjs",
"format": "turbo run format --continue",
"format:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='packages/*/**' --ignore-pattern='extensions/*/**' --fix",
"lint": "turbo run lint",
"lint:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='packages/*/**' --ignore-pattern='extensions/*/**'",
"mrm": "npm exec --package=mrm --package=@w5s/mrm-preset@latest -- mrm --preset @w5s/mrm-preset",
"postbuild": "npm run docs",
"postinstall": "npm run prepare",
"prepare": "npx run-p \"prepare:*\"",
"prepare:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"prepare:packages": "turbo run prepare",
"pull-external": "turbo run pull-external",
"release": "[ -n \"${CI:-}\" ] && npx lerna publish --yes || npx lerna publish",
"release:extensions": "[ -n \"${CI:-}\" ] && (npx lerna version --scope 'captive-' --yes || npx lerna version --scope 'captive-')",
"rescue": "git clean -fdx;yarn install",
"spellcheck": "turbo run spellcheck",
"spellcheck:root": "cspell --no-progress '**' --exclude='packages/*/**' --exclude='extensions/*/**'",
"test": "turbo run test",
"validate": "turbo run build lint test spellcheck"
},
"commitlint": {
"extends": [
"@captive/commitlint-config"
]
},
"lint-staged": {
"!(**/dist/**)/*.js?(x)": [
"eslint"
],
"!(**/dist/**)/*.ts?(x)": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
]
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"sort-keys-fix"
],
"extends": [
"@captive/eslint-config"
]
},
"devDependencies": {
"@captive/commitlint-config": "workspace:*",
"@captive/conventional-changelog": "workspace:*",
"@captive/cspell-config": "workspace:*",
"@captive/eslint-config": "workspace:*",
"@captive/ts-config": "workspace:*",
"@lerna-lite/publish": "3.12.3",
"@types/node": "22.13.17",
"cspell": "8.19.4",
"eslint": "8.57.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"markdown-magic": "2.6.1",
"markdown-magic-package-json": "2.0.2",
"markdown-magic-subpackage-list": "1.1.2",
"npm-run-all2": "8.0.4",
"prettier": "3.6.2",
"turbo": "2.5.8",
"typescript": "5.9.3"
},
"packageManager": "yarn@4.10.3",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.4.0"
}
}