-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.86 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
72
73
74
75
76
{
"name": "home-language",
"private": true,
"type": "commonjs",
"displayName": "Home Language Support",
"description": "Language support for the Home programming language",
"version": "0.1.0",
"publisher": "chrisbreuer",
"repository": {
"type": "git",
"url": "https://github.com/home-lang/home"
},
"categories": [
"Programming Languages",
"Debuggers",
"Formatters",
"Linters",
"Snippets"
],
"keywords": [
"home",
"systems",
"programming",
"compiler"
],
"scripts": {
"dev": "bunx bunpress dev",
"dev:docs": "bunx bunpress dev",
"build": "bunx bunpress build",
"build:docs": "bunx bunpress build",
"build:compiler": "./pantry/.bin/zig build",
"preview": "bunx bunpress preview",
"lint": "bunx --bun pickier .",
"lint:fix": "bunx --bun pickier . --fix",
"format": "bunx --bun pickier . --format",
"format:fix": "bunx --bun pickier . --format --write",
"test": "bun test",
"test:compiler": "./pantry/.bin/zig build test",
"typecheck": "bun --bun tsc --noEmit",
"release": "bunx --bun bumpx -r --all"
},
"devDependencies": {
"@stacksjs/bunpress": "^0.1.1",
"zig-dtsx": "^0.9.31",
"@types/bun": "^1.3.9",
"better-dx": "^0.2.15"
},
"workspaces": [
"./packages/vscode-home",
"./packages/action"
],
"pickier": {
"ignores": [
"**/node_modules/**",
"**/pantry/**",
"**/pantry_modules/**",
"**/zig-out/**",
"**/zig-cache/**",
"**/.zig-cache/**",
"**/.home-cache/**",
"**/dist/**",
"**/.test-cache/**"
]
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
},
"dependencies": {
"ziglang.org": "^0.17.0-dev.1275+59a628c6d"
}
}