-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
55 lines (55 loc) · 2.28 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
{
"name": "vscode-cspell-dict-extensions",
"private": true,
"version": "5.7.9",
"scripts": {
"test": "lerna run test",
"postinstall": "lerna exec \"npm i\"",
"pub-version": "lerna version --conventional-commits",
"publish-all": "lerna exec --no-bail \"vsce publish\"",
"publish-all-ovsx": "lerna exec --no-bail \"ovsx publish --pat \\$OVSX_TOKEN\"",
"gen:readme": "bash ./scripts/update-code-workspace.sh",
"gen:release-please": "bash ./scripts/gen-release-please-config.sh",
"gen:workflow": "bash ./scripts/update-workflows.sh",
"echo": "echo $OVSX_TOKEN",
"build": "lerna run build",
"test-pack": "lerna run pack-extension",
"cspell": "npx cspell . --dot --no-progress",
"create:extension": "node ./generator-cspell-dicts-extensions/run.js",
"X-lint": "eslint . --fix --cache && prettier -w \"**/*.{md,yaml,yml,json}\"",
"X-lint-ci": "eslint . && prettier -c \"**/*.{md,yaml,yml,json}\"",
"prettier:fix": "prettier -w \"**/*.{ts,md,yaml,yml,json}\"",
"prettier:lint": "prettier \"**/*.{ts,md,yaml,yml,json}\"",
"test:all": "lerna run --concurrency=1 --stream \"--scope=code-spell-checker-*\" test",
"test:cspell": "lerna run --concurrency=4 --stream \"--scope=code-spell-checker-*\" test:cspell",
"lint": "npm run cspell",
"update-dictionaries": "lerna exec \"npx npm-check-updates -t latest -u -f \\\"@cspell*\\\" \" && npm i",
"update-packages": "npm ci && npx npm-check-updates -t semver -u && npm i && lerna exec \"npx npm-check-updates -t semver -u && rm -rf node_modules package-lock.json && npm i\" && npm i"
},
"type": "commonjs",
"engines": {
"vscode": "^1.67.0"
},
"devDependencies": {
"@lerna-lite/cli": "^3.10.0",
"@lerna-lite/exec": "^3.10.0",
"@lerna-lite/run": "^3.10.0",
"@tsconfig/node18": "^18.2.4",
"@types/mocha": "^10.0.9",
"@types/node": "^18.19.59",
"@types/vscode": "^1.94.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"cspell": "^8.15.4",
"inject-markdown": "^3.1.0",
"mocha": "^10.7.3",
"npm-check-updates": "^17.1.8",
"ovsx": "^0.10.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"scripts": "file:scripts",
"test-extensions": "file:test-runner",
"typescript": "^5.6.3",
"yaml": "^2.6.0"
}
}