-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.jsonc
More file actions
52 lines (46 loc) · 1.28 KB
/
package.jsonc
File metadata and controls
52 lines (46 loc) · 1.28 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
{
"name": "zig-starter",
"version": "0.1.0",
"description": "A Zig starter template for library and CLI projects",
"dependencies": {
// ============================================
// LOCAL DEVELOPMENT PACKAGES
// ============================================
"zig-test-framework": "~/Code/zig-test-framework",
"zig-cli": "~/Code/zig-cli",
"zig-config": "~/Code/zig-config",
"zig-error-handling": "~/Code/zig-error-handling",
"zig-bump": "~/Code/zig-bump",
// System dependency
"ziglang.org": "0.15.1"
},
"devDependencies": {
"pantry": "~/Code/pantry"
},
"link": {
"zig-test-framework": "~/Code/zig-test-framework",
"zig-cli": "~/Code/zig-cli",
"zig-config": "~/Code/zig-config",
"zig-error-handling": "~/Code/zig-error-handling",
"zig-bump": "~/Code/zig-bump"
},
"build": {
"entry": "src/main.zig",
"output": "zig-out",
"targets": [
"x86_64-linux",
"x86_64-macos",
"aarch64-macos",
"x86_64-windows"
]
},
"scripts": {
"build": "zig build",
"test": "zig build test",
"run": "zig build run",
"clean": "rm -rf zig-out zig-cache",
"bump:patch": "bump patch --changelog",
"bump:minor": "bump minor --changelog",
"bump:major": "bump major --changelog"
}
}