-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.11 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": "flpdiff",
"version": "0.1.2",
"description": "FL Studio (.flp) parser + semantic diff — no Python, no install prerequisites.",
"keywords": [
"fl-studio",
"flp",
"fruity-loops",
"image-line",
"diff",
"git-diff",
"daw",
"music-production",
"binary-parser",
"typescript",
"bun",
"cli"
],
"type": "module",
"license": "MIT",
"author": {
"name": "Roman Pronskiy",
"email": "roman@pronskiy.com",
"url": "https://pronskiy.com"
},
"homepage": "https://github.com/dawhubapp/flpdiff",
"repository": {
"type": "git",
"url": "git+https://github.com/dawhubapp/flpdiff.git"
},
"bugs": {
"url": "https://github.com/dawhubapp/flpdiff/issues"
},
"module": "src/index.ts",
"main": "src/index.ts",
"types": "src/index.ts",
"bin": {
"flpdiff": "src/cli.ts"
},
"files": [
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"cli": "bun run src/cli.ts",
"build:binary": "bun build src/cli.ts --compile --outfile dist/flpdiff",
"build:binary:all": "bun run build:binary:darwin-arm64 && bun run build:binary:darwin-x64 && bun run build:binary:linux-x64 && bun run build:binary:linux-arm64 && bun run build:binary:win-x64",
"build:binary:darwin-arm64": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/flpdiff-darwin-arm64",
"build:binary:darwin-x64": "bun build src/cli.ts --compile --target=bun-darwin-x64 --outfile dist/flpdiff-darwin-x64",
"build:binary:linux-x64": "bun build src/cli.ts --compile --target=bun-linux-x64 --outfile dist/flpdiff-linux-x64",
"build:binary:linux-arm64": "bun build src/cli.ts --compile --target=bun-linux-arm64 --outfile dist/flpdiff-linux-arm64",
"build:binary:win-x64": "bun build src/cli.ts --compile --target=bun-windows-x64 --outfile dist/flpdiff-windows-x64.exe"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"typed-binary": "^4.3.3"
}
}