-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.89 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
{
"name": "ast-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Monorepo for Abstract Syntax Tree (AST) tools - JavaScript parser using ANTLR with extensible architecture",
"main": "index.js",
"scripts": {
"build": "turbo run build --filter='./packages/*'",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check-format": "biome format .",
"check:generated": "cd packages/javascript && bun run antlr && git diff --exit-code -- src/generated && test -z \"$(git ls-files --others --exclude-standard -- src/generated)\"",
"typecheck": "turbo run typecheck --filter='./packages/*'",
"test": "turbo run test --filter='./packages/*'",
"test:watch": "vitest",
"validate": "biome check . && bun run check:generated && bun run typecheck && bun run test && bun run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "echo \"Direct changeset publish is unsafe for workspace packages; use the Sylphx release workflow.\" && exit 1"
},
"keywords": [
"ast",
"parser",
"javascript",
"antlr",
"typescript",
"monorepo"
],
"author": "Sylphx <hi@sylphx.com> (https://sylphx.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SylphxAI/ast.git"
},
"homepage": "https://github.com/SylphxAI/ast#readme",
"bugs": {
"url": "https://github.com/SylphxAI/ast/issues"
},
"packageManager": "bun@1.3.1",
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@sylphx/biome-config": "^0.4.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/node": "^22.14.1",
"antlr4ts-cli": "0.5.0-alpha.4",
"rimraf": "^5.0.7",
"tsup": "^8.4.0",
"turbo": "^2.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"dependencies": {
"antlr4ts": "0.5.0-alpha.4"
}
}