-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 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
{
"name": "home-language",
"private": true,
"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/stacksjs/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",
"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",
"typecheck": "bun --bun tsc --noEmit",
"release": "bunx --bun bumpx -r --all"
},
"devDependencies": {
"@stacksjs/bunpress": "^0.1.1",
"@types/bun": "^1.3.9",
"better-dx": "^0.2.6",
"typescript": "^5.9.3"
},
"workspaces": [
"./packages/vscode-home",
"./packages/action"
],
"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"
}
}