-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (53 loc) · 2.17 KB
/
package.json
File metadata and controls
62 lines (53 loc) · 2.17 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
{
"name": "sentry-conventions",
"private": true,
"license": "MIT",
"version": "1.0.0",
"scripts": {
"format": "yarn format:js && yarn format:python",
"format:js": "biome format . --write",
"format:python": "(cd python && uv run black src/ && uv run isort src/)",
"lint": "yarn lint:js && yarn lint:python",
"lint:js": "biome format . && biome lint .",
"lint:python": "(cd python && uv run pyflakes src/ && uv run mypy .)",
"lint-fix": "biome lint . --write",
"test": "yarn test:js && yarn test:python",
"test:js": "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": {
"@biomejs/biome": "1.9.4",
"@clack/prompts": "^0.11.0",
"@types/node": "^22.15.3",
"@types/tar": "^6.1.13",
"ajv": "^8.17.1",
"tar": "^7.5.11",
"tsx": "^4.19.4",
"vitest": "^3.1.2"
},
"workspaces": ["javascript/*", "python/*", "rust/*", "docs"],
"packageManager": "yarn@1.22.22",
"volta": {
"node": "22.15.0",
"yarn": "1.22.22"
}
}