-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.34 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
{
"name": "sentry-conventions",
"private": true,
"license": "MIT",
"version": "1.0.0",
"scripts": {
"format": "yarn format:js && yarn format:python",
"format:js": "oxfmt",
"format:python": "(cd python && uv run black src/ && uv run isort src/)",
"lint": "yarn lint:js && yarn lint:python",
"lint:js": "oxfmt --check && oxlint",
"lint:python": "(cd python && uv run pyflakes src/ && uv run mypy .)",
"lint-fix": "oxlint --fix",
"test": "yarn test:js && yarn test:python",
"test:js": "vitest run",
"test:js:watch": "vitest",
"test:python": "cd python && uv sync && uv pip install -e . && uv run pytest",
"build": "yarn build:js && yarn build:python && yarn build:tarball",
"build:js": "(cd javascript/sentry-conventions && yarn build)",
"build:python": "(cd python && uv build)",
"build:tarball": "yarn build:tarball:js && yarn build:tarball:python && yarn build:tarball:model",
"build:tarball:js": "(cd javascript/sentry-conventions && yarn build:tarball)",
"build:tarball:python": "yarn build:python",
"build:tarball:model": "tsx scripts/gzip_folder.ts model model/sentry-conventions-json.tgz",
"create:attribute": "tsx scripts/create_attribute.ts",
"generate": "tsx scripts/generate.ts && yarn format",
"generate:attribute-changelog": "tsx scripts/generate_attribute_changelog.ts",
"bump:attribute-changelog": "tsx scripts/bump_attribute_changelog.ts",
"clear:attribute-changelog": "tsx scripts/clear_attribute_changelog.ts --all",
"clear:attribute-changelog:key": "tsx scripts/clear_attribute_changelog.ts --key",
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build",
"docs:preview": "yarn workspace docs preview"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@clack/prompts": "^1.5.1",
"@types/node": "^25.9.3",
"ajv": "^8.20.0",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"tar": "^7.5.16",
"tsx": "^4.22.4",
"vitest": "^4.1.9"
},
"resolutions": {
"//esbuild": "Forces patched esbuild (GHSA-gv7w-rqvm-qjhr, GHSA-g7r4-m6w7-qqqr). Remove once upstream bumps to >=0.28.1.",
"esbuild": "~0.28.1"
},
"workspaces": [
"javascript/*",
"python/*",
"rust/*",
"docs"
],
"packageManager": "yarn@1.22.22",
"volta": {
"node": "22.15.0",
"yarn": "1.22.22"
}
}