-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.52 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.52 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
{
"name": "@captive/es-packages-src",
"version": "1.0.0-alpha.0",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:Captive-Studio/es-packages.git"
},
"license": "MIT",
"type": "module",
"files": [],
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"code-analysis": ":",
"configure": "npm run mrm -- configure",
"coverage": ":",
"develop": ":",
"docs": "node ./markdown.mjs && turbo run docs",
"format": "turbo run format --continue",
"format:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='apps/*/**' --ignore-pattern='packages/*/**' --fix",
"lint": "turbo run lint",
"lint:root": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml --ignore-pattern='apps/*/**' --ignore-pattern='packages/*/**'",
"mrm": "npm exec --package=mrm --package=@w5s/mrm-preset@latest -- mrm --preset @w5s/mrm-preset",
"postbuild": "npm run docs",
"postinstall": "npx run-p \"postinstall:*\"",
"postinstall:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"release": "[ -n \"${CI:-}\" ] && npx lerna publish --yes || npx lerna publish",
"rescue": "git clean -fdx;yarn install",
"spellcheck": "turbo run spellcheck",
"spellcheck:root": "cspell --no-progress '**' --exclude='apps/*/**' --exclude='packages/*/**'",
"test": "turbo run test",
"validate": "turbo run build lint test spellcheck"
},
"commitlint": {
"extends": [
"@captive/commitlint-config"
]
},
"lint-staged": {
"*.{json,jsonc,json5}": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
],
"*.js?(x)": [
"eslint"
],
"*.ts?(x)": [
"eslint"
]
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@captive/eslint-config"
]
},
"devDependencies": {
"@captive/commitlint-config": "2.1.15",
"@captive/conventional-changelog": "2.0.21",
"@captive/cspell-config": "2.4.21",
"@captive/eslint-config": "2.0.32",
"@captive/ts-config": "2.4.1",
"cspell": "9.2.1",
"eslint": "8.57.1",
"jsdom": "26.1.0",
"lerna": "8.2.4",
"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"
},
"sideEffect": false
}