-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.88 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
64
65
66
67
68
69
70
{
"name": "svg",
"version": "0.0.0",
"private": true,
"description": "Bun workspace for the tree-sitter SVG grammar and its injected sub-grammars",
"license": "MIT OR Apache-2.0",
"author": "Kaj Kowalski <info@kajkowalski.nl> (https://github.com/kjanat)",
"imports": {
"#cli": "./workers/svg-compat/src/cli.ts",
"#component/*": "./workers/svg-compat/src/components/*",
"#lib": "./workers/svg-compat/src/lib/mod.ts",
"#lib/*": "./workers/svg-compat/src/lib/*",
"#server": "./workers/svg-compat/src/main.ts",
"#src/*": "./workers/svg-compat/src/*"
},
"workspaces": [
"grammars/*",
"scripts",
"distribution/npm/scripts"
],
"scripts": {
"fmt": "dprint fmt",
"fmt:update": "dprint config update -yr",
"postinstall": "bun run --filter '*' postinstall",
"lint": "bun run --filter '*' lint",
"prepare": "bun run --filter '*' prepare && importmapify",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@mdn/browser-compat-data": "catalog:deno",
"@types/deno": "catalog:",
"@types/node": "catalog:",
"importmapify": "catalog:deno",
"preact": "catalog:deno",
"preact-render-to-string": "catalog:deno",
"runner-run": "catalog:",
"tree-sitter": "catalog:",
"web-features": "catalog:deno"
},
"packageManager": "bun@1.3.14",
"volta": {
"node": "26.4.0",
"npm": "11.17.0"
},
"catalog": {
"@biomejs/biome": "^2.5.9",
"@types/bun": "^1.3",
"@types/deno": "^2.7.0",
"@types/node": "^26.2.0",
"dprint": "^0.55.2",
"node-addon-api": "^8.9.2",
"node-gyp": "^13.0.1",
"node-gyp-build": "^4.8",
"prebuildify": "^6",
"runner-run": "^0.25.1",
"tree-sitter": "^0.25.0",
"tree-sitter-cli": "^0.26.12",
"typescript": "^7"
},
"catalogs": {
"deno": {
"@mdn/browser-compat-data": "^8.0.11",
"importmapify": "^1.7.0",
"preact": "^10.23.1",
"preact-render-to-string": "^6",
"web-features": "^3.23.0"
}
}
}