-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 3.12 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
{
"name": "@augment-vir/mono-repo-root",
"version": "30.5.1",
"private": true,
"homepage": "https://github.com/electrovir/augment-vir",
"bugs": {
"url": "https://github.com/electrovir/augment-vir/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electrovir/augment-vir.git"
},
"license": "(MIT or CC0 1.0)",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"compile": "virmator compile",
"docs": "npm run exec --workspace @augment-vir/scripts src/scripts/run-typedoc.script.ts",
"format": "virmator format",
"postinstall": "cd packages/common && tsc -b --pretty -f",
"lint": "virmator lint fix",
"publish": "virmator publish \"npm run test:all\"",
"test": "mono-vir for-each npm run test",
"test:all": "npm run compile && npm run test:coverage && concurrently --colors --kill-others-on-fail -c auto --names spelling,format,deps,lint,exports,docs \"npm run test:spelling\" \"npm run test:format\" \"npm run test:deps\" \"npm run test:lint\" \"npm run test:exports\" \"npm run test:docs\"",
"test:coverage": "mono-vir for-each npm run test:coverage",
"test:deps": "virmator deps check",
"test:docs": "npm run exec --workspace @augment-vir/scripts src/scripts/run-typedoc.script.ts check",
"test:exports": "npm run exec --workspace @augment-vir/scripts src/scripts/verify-exports.script.ts",
"test:format": "virmator format check",
"test:lint": "virmator lint",
"test:spelling": "virmator spellcheck",
"test:update": "mono-vir for-each-async npm run test:update"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"cspell": "^8.16.0",
"dependency-cruiser": "^16.6.0",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-playwright": "^2.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-unicorn": "^56.0.0",
"mono-vir": "^1.0.1",
"npm-check-updates": "^17.1.10",
"prettier": "^3.3.3",
"prettier-plugin-interpolated-html-tags": "^1.0.5",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-multiline-arrays": "^3.0.6",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1",
"typescript-eslint": "^8.13.0",
"virmator": "^13.7.0"
},
"engines": {
"node": ">=22"
},
"overrides": {
"playwright": "1.46.1"
}
}