-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 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
{
"name": "open-ui-docs",
"description": "Open UI documentation.",
"version": "1.0.0",
"author": "Open UI",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/openui/open-ui"
},
"keywords": [
"open ui"
],
"license": "MIT",
"scripts": {
"dev": "astro dev --port 3000",
"start": "astro dev --port 3000",
"build": "astro build",
"preview": "astro preview",
"sync-contributors": "node src/data/sync.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"src/**/*.{jsx,js,md,mjs,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@astrojs/mdx": "^4.0.8",
"@astrojs/sitemap": "3.2.1",
"astro": "5.3.1",
"astro-compress": "^2.3.6",
"eslint": "^8.18.0",
"hast-util-to-string": "^2.0.0",
"hastscript": "^7.2.0",
"husky": "^4.2.3",
"lint-staged": "^11.1.2",
"prettier": "^2.0.4",
"prettier-plugin-astro": "^0.5.4",
"rehype-autolink-headings": "^6.1.1"
},
"dependencies": {
"@astrojs/preact": "^4.0.4",
"invokers-polyfill": "^0.5.2",
"preact": "^10.26.2"
}
}