-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "docs",
"description": "Source code of the SumUp Developer portal",
"keywords": [
"sumup",
"documentation",
"developer portal"
],
"homepage": "https://developer.sumup.com",
"bugs": {
"url": "https://github.com/sumup/sumup-developer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumup/sumup-developer.git"
},
"license": "Apache-2.0",
"author": "SumUp <support@sumup.com> (https://sumup.com/)",
"type": "module",
"version": "0.0.1",
"engines": {
"node": "24.x",
"npm": "11.x"
},
"packageManager": "npm@11.18.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "24.x",
"onFail": "error"
}
},
"scripts": {
"info": "astro info",
"dev": "astro dev",
"start": "astro preview",
"prebuild": "astro sync --force",
"build": "astro build",
"precheck": "astro sync",
"check": "astro check",
"prelint": "astro sync",
"lint": "npm run lint:src && npm run lint:markdown",
"lint:fix": "npm run lint:src:fix && npm run lint:markdown:fix",
"format": "npm run format:core:fix && npm run format:data:fix",
"format:check": "npm run format:core:check && npm run format:data:check",
"format:core:check": "npx prettier --check \"**/*.{astro,js,jsx,ts,tsx,mjs,css}\"",
"format:core:fix": "npx prettier --write \"**/*.{astro,js,jsx,ts,tsx,mjs,css}\"",
"format:data:check": "npx prettier --check \"**/*.{json,yaml,yml}\"",
"format:data:fix": "npx prettier --write \"**/*.{json,yaml,yml}\"",
"lint:src": "npx eslint",
"lint:src:fix": "npx eslint --fix",
"lint:markdown": "rumdl check .",
"lint:markdown:fix": "rumdl fmt .",
"linkcheck": "CHECK_LINKS=true astro build",
"test": "vitest run"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/cloudflare": "14.1.3",
"@astrojs/language-server": "2.16.12",
"@astrojs/markdown-satteri": "0.3.4",
"@astrojs/react": "6.0.1",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/starlight": "0.41.3",
"@astrojs/starlight-docsearch": "^0.7.0",
"@astrojs/ts-plugin": "1.10.10",
"@eslint/js": "9.39.5",
"@expressive-code/plugin-collapsible-sections": "^0.44.0",
"@expressive-code/plugin-line-numbers": "0.44.0",
"@resvg/resvg-wasm": "2.4.0",
"@sindresorhus/slugify": "^3.0.0",
"@sumup-oss/circuit-ui": "11.12.0",
"@sumup-oss/design-tokens": "10.1.0",
"@sumup-oss/icons": "6.12.0",
"@types/node": "26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "8.64.0",
"astro": "7.1.1",
"astro-mermaid": "2.1.0",
"change-case-all": "^2.1.0",
"eslint": "9.39.5",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"expressive-code": "^0.44.0",
"globals": "17.7.0",
"jsdom": "^29.1.1",
"openapi-types": "^12.1.3",
"prettier": "3.9.4",
"prettier-plugin-astro": "^0.14.1",
"react": "^19.2.7",
"react-content-loader": "^7.1.2",
"react-dom": "^19.2.7",
"react-final-form": "^7.0.1",
"rumdl": "0.2.34",
"sass": "^1.101.0",
"satori": "0.15.2",
"satteri": "0.9.5",
"starlight-links-validator": "^0.25.2",
"starlight-llms-txt": "0.11.0",
"tsx": "4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "8.64.0",
"vitest": "4.1.10",
"wrangler": "4.110.0"
}
}