-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 KB
/
package.json
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
{
"name": "treeground",
"version": "0.3.0",
"description": "An interactive Tree-Sitter playground",
"author": "Al Mahdi",
"license": "MIT",
"homepage": "https://github.com/picomet/treeground#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/picomet/treeground.git"
},
"bugs": {
"url": "https://github.com/picomet/treeground/issues"
},
"funding": "https://buymeacoffee.com/almahdi404",
"categories": [
"Programming Languages",
"Visualization"
],
"keywords": [
"tree-sitter",
"parsing",
"playground"
],
"bin": {
"treeground": "index.js"
},
"files": [
".output"
],
"type": "module",
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"format": "prettier --write .",
"v": "changeset version && npm install synclockver --no-save && synclockver",
"release": "npm ci && npm run build && changeset publish"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@shikijs/monaco": "^1.16.3",
"@solidjs/router": "^0.14.3",
"@solidjs/start": "^1.0.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/md5": "^2.3.5",
"autoprefixer": "^10.4.20",
"chokidar": "^3.6.0",
"md5": "^2.3.0",
"monaco-editor-core": "^0.51.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"shiki": "^1.16.3",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.22",
"solid-motionone": "^1.0.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.6.2",
"vinxi": "^0.4.2",
"web-tree-sitter": "^0.23.0",
"yocto-spinner": "^0.1.0"
}
}