-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.98 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
{
"name": "codecontext-monorepo",
"private": true,
"scripts": {
"build": "turbo build",
"test": "turbo test",
"test:coverage": "pnpm --filter @recallnet/codecontext-parser test:coverage",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo typecheck",
"go:test": "cd packages/golangci-lint && go test ./...",
"go:fmt:check": "sh -c 'test -z \"$(cd packages/golangci-lint && gofmt -l analyzer plugin)\"'",
"go:qa": "pnpm go:fmt:check && pnpm go:test",
"python:test": "python3 -m unittest discover -s packages/python/tests -t packages/python",
"python:qa": "pnpm python:test && python3 -m compileall -q packages/python/codecontext_python",
"ruby:test": "cd packages/ruby && ruby -Ilib -e 'Dir[\"test/**/*_test.rb\"].sort.each { |file| require File.expand_path(file) }'",
"ruby:package": "cd packages/ruby && gem build codecontext-ruby.gemspec >/dev/null && rm -f codecontext-ruby-*.gem",
"ruby:qa": "pnpm ruby:test && pnpm ruby:package",
"demo:render": "./docs/demos/scripts/render.sh",
"prepare": "husky",
"docs:lint": "recall-docs-governance lint",
"docs:lint:changed": "recall-docs-governance lint --changed",
"skills:lint": "ruby scripts/validate-skills.rb"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@eslint/js": "^9.0.0",
"@microsoft/tsdoc": "^0.16.0",
"@recallnet/docs-governance-preset": "^0.3.3",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-no-secrets": "^2.1.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-sonarjs": "^3.0.0",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unicorn": "^58.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
},
"packageManager": "pnpm@10.32.1"
}