-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.6 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.6 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
77
78
79
80
81
82
83
84
85
86
{
"packageManager": "yarn@4.13.0",
"name": "svgo-dev",
"version": "0.0.0",
"description": "Landing page and documentation for SVGO.",
"license": "MIT",
"homepage": "https://svgo.dev",
"private": true,
"author": {
"name": "Seth Falco",
"email": "seth@falco.fun",
"url": "https://falco.fun"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/svgo"
},
"repository": {
"type": "git",
"url": "git://github.com/svg/svgo.dev.git"
},
"bugs": {
"url": "https://github.com/svg/svgo.dev/issues"
},
"keywords": [
"svgo",
"docusaurus"
],
"engines": {
"node": ">=18"
},
"scripts": {
"svgo:clone": "rimraf .svgo && git clone https://github.com/svg/svgo.git .svgo --depth 1",
"svgo:copy": "rimraf .svgo && cp -r ../svgo .svgo",
"optimize-svgs": "npx svgo --pretty --indent 2 ./src/vectors/*",
"lint": "eslint .",
"format": "eslint --fix .",
"typecheck": "tsc",
"a11y": "node ./pa11y.mjs",
"a11y:ci": "start-server-and-test 'yarn run serve --no-open' 'http://localhost:3000' 'yarn run a11y'",
"qa": "yarn run lint && yarn run typecheck && yarn run a11y:ci",
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "3.9.2",
"@docusaurus/plugin-client-redirects": "3.9.2",
"@docusaurus/plugin-content-docs": "3.9.2",
"@docusaurus/plugin-content-pages": "3.9.2",
"@docusaurus/plugin-sitemap": "3.9.2",
"@docusaurus/plugin-svgr": "3.9.2",
"@docusaurus/theme-classic": "3.9.2",
"@docusaurus/theme-common": "3.9.2",
"@docusaurus/theme-live-codeblock": "3.9.2",
"@easyops-cn/docusaurus-search-local": "^0.55.1",
"@mdx-js/react": "^3.1.1",
"clsx": "^2.1.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rehype-stringify": "^10.0.1",
"svgo": "^4.0.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/types": "3.9.2",
"@sethfalco/eslint-config": "^1.2.1",
"@types/node": "^25.3.3",
"@types/pa11y": "^5.3.7",
"@types/react": "^19.2.14",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"pa11y": "^9.1.0",
"rimraf": "^6.1.3",
"start-server-and-test": "^2.1.5",
"typescript": "^5.9.3"
}
}