-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.24 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.24 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
{
"name": "vivsha.ws",
"private": true,
"description": "vivshaw's webbed sight",
"homepage": "https://vivsha.ws",
"license": "MIT",
"author": {
"name": "vivshaw",
"email": "hey@vivsha.ws",
"url": "https://vivsha.ws"
},
"repository": {
"type": "git",
"url": "https://github.com/vivshaw/vivshaw.github.io.git"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "yarn apps/vivsha.ws build",
"dev": "yarn apps/vivsha.ws dev",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "yarn lint:js && yarn lint:css",
"lint:fix": "yarn lint:js:fix && yarn lint:css:fix",
"lint:js": "oxlint",
"lint:js:fix": "oxlint --fix",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "stylelint \"**/*.css\" --fix",
"start": "yarn apps/vivsha.ws start",
"new:post": "hygen post new",
"test": "yarn workspace @vivshaw/rehype-smallcap-words test && yarn workspace @vivshaw/rehype-sidenotes test",
"test:quiet": "yarn workspace @vivshaw/rehype-smallcap-words test:quiet && yarn workspace @vivshaw/rehype-sidenotes test:quiet",
"typecheck": "yarn workspace @vivshaw/vivsha.ws typecheck && yarn workspace @vivshaw/basalt typecheck && yarn workspace @vivshaw/basalt-mdx typecheck",
"prepare": "husky"
},
"dependencies": {
"remark-github-blockquote-alert": "^2.0.1"
},
"devDependencies": {
"@shikijs/rehype": "^3.21.0",
"@shikijs/transformers": "^3.21.0",
"husky": "^9.1.7",
"hygen": "^6.2.11",
"lint-staged": "^16.2.7",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"postcss-mixins": "^12.1.2",
"rehype-mdx-import-media": "^1.2.0",
"shiki": "^3.21.0",
"stylelint": "^17.1.1",
"stylelint-config-recess-order": "^7.7.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": [
"oxlint --fix",
"oxfmt --write --no-error-on-unmatched-pattern"
],
"*.css": [
"stylelint --fix",
"oxfmt --write --no-error-on-unmatched-pattern"
],
"*.{json,md,mdx,yml,yaml}": [
"oxfmt --write --no-error-on-unmatched-pattern"
]
}
}