-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.69 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
71
{
"name": "unbash",
"version": "2.2.0",
"description": "Fast 0-deps bash parser written in TypeScript",
"keywords": [
"ast",
"bash",
"lexer",
"parser",
"posix",
"scanner",
"tokenizer",
"typescript"
],
"license": "ISC",
"author": {
"name": "Lars Kappert",
"email": "lars@webpro.nl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpro-nl/unbash.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/parser.d.ts",
"default": "./dist/parser.js"
},
"./printer": {
"types": "./dist/printer.d.ts",
"default": "./dist/printer.js"
}
},
"scripts": {
"build": "tsc",
"format": "oxfmt",
"lint": "oxlint",
"prepack": "tsc",
"test": "node --test test/*.test.ts",
"playground": "npx rolldown src/parser.ts -f esm -m -o playground/parser.js && npx rolldown src/printer.ts -f esm -m -o playground/printer.js && sed -i 's/id=\"version\">[^<]*/id=\"version\">'\"$(node -p \"require('.\\x2fpackage.json').version\")\"'/' playground/index.html"
},
"devDependencies": {
"@ericcornelissen/bash-parser": "^0.5.3",
"@types/node": "^24.10.13",
"bash-parser": "^0.5.0",
"mitata": "^1.0.34",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"remark": "^15.0.1",
"remark-preset-webpro": "^2.1.1",
"rolldown": "1.0.0-rc.6",
"sh-syntax": "^0.5.8",
"tree-sitter": "^0.25.0",
"tree-sitter-bash": "^0.25.1",
"typescript": "^5.8.3",
"web-tree-sitter": "^0.26.5"
},
"remarkConfig": {
"plugins": [
"preset-webpro"
]
},
"engines": {
"node": ">=14"
},
"packageManager": "pnpm@10.29.2"
}