This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.3 KB
/
package.json
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
77
78
79
80
81
82
83
{
"name": "@vangware/libraries",
"description": "📚 Vangware libraries monorepo",
"version": "1.0.0",
"author": {
"email": "hello@vangware.com",
"name": "Vangware",
"url": "https://vangware.com"
},
"bugs": {
"email": "issues@vangware.com",
"url": "https://github.com/vangware/libraries/issues"
},
"dependencies": {
"@vangware/configs": "workspace:*",
"@vangware/test": "workspace:*"
},
"devDependencies": {
"@astrojs/prefetch": "^0.4.1",
"@astrojs/starlight": "^0.11.1",
"@astrojs/starlight-tailwind": "^2.0.0",
"@astrojs/tailwind": "^5.0.2",
"@changesets/cli": "^2.26.2",
"@types/node": "^20.8.7",
"astro": "^3.3.2",
"c8": "^8.0.1",
"cpy-cli": "^5.0.0",
"esbuild": "^0.19.5",
"eslint": "^8.51.0",
"gzip-size": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rehype-accessible-emojis": "^0.3.2",
"rehype-external-links": "^3.0.0",
"rehype-plugin-image-native-lazy-loading": "^1.2.0",
"rimraf": "^5.0.5",
"sharp": "^0.32.6",
"simple-git-hooks": "^2.9.0",
"stylelint": "^15.11.0",
"tailwindcss": "^3.3.3",
"tsx": "^3.14.0",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2",
"vite-plugin-lightningcss": "^0.0.5"
},
"engines": {
"node": ">=21",
"pnpm": ">=8"
},
"homepage": "https://vangware.com",
"keywords": [
"libraries",
"typescript",
"vangware"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/vangware/libraries.git"
},
"scripts": {
"clean": "pnpm --recursive --parallel clean",
"compile": "pnpm --recursive compile && pnpm update:sizes",
"document": "run-s --print-label document:typedoc prettify:typedoc document:typedoc-patch document:starlight",
"document:starlight": "cd docs && astro build",
"document:typedoc": "typedoc",
"document:typedoc-patch": "node ./typedoc-starlight.js",
"git:pre-push": "pnpm --recursive git:pre-push",
"lint": "pnpm --recursive lint",
"prepare": "simple-git-hooks",
"prettify:typedoc": "prettier --ignore-path=.prettierignore --log-level=warn --write './docs/.typedoc/**/*.md'",
"publish": "pnpm --recursive publish",
"test": "c8 pnpm --recursive test",
"update:sizes": "node ./update-sizes.js"
},
"sideEffects": false,
"simple-git-hooks": {
"pre-push": "pnpm git:pre-push"
},
"type": "module"
}