-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 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": "@mpeggroup/mpeg-sdl-parser",
"description": "ISO/IEC 14496-34 Syntactic Description Language (MPEG SDL) parser implemented in TypeScript",
"homepage": "https://github.com/mpeggroup/mpeg-sdl-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mpeggroup/mpeg-sdl-parser.git"
},
"scripts": {
"build": "bun build --entrypoints ./index.ts --outdir ./dist --target node --format esm --external '@lezer/*' --external '@codemirror/*' --external 'prettier'",
"prepublishOnly": "bun run build",
"generate": "lezer-generator --typeScript --output src/lezer/parser ./grammar/sdl.lezer.grammar"
},
"license": "MIT",
"keywords": [
"bun",
"mpeg",
"sdl",
"parser"
],
"module": "index.ts",
"main": "dist/index.js",
"type": "module",
"version": "3.0.4",
"files": [
"dist",
"grammar",
"src",
"tests",
"bun.lock",
"index.ts",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
],
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/bun": "1.3.6"
},
"peerDependencies": {
"typescript": "5.9.3"
},
"dependencies": {
"@codemirror/state": "6.5.4",
"@codemirror/language": "6.12.1",
"@lezer/common": "1.5.0",
"@lezer/generator": "1.8.0",
"@lezer/highlight": "1.2.3",
"@lezer/lr": "1.4.7",
"prettier": "3.8.1"
},
"overrides": {
"@lezer/common": "1.5.0",
"@lezer/lr": "1.4.7",
"@codemirror/state": "6.5.4"
}
}