-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
99 lines (99 loc) · 2.88 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"dependencies": {
"@astrojs/mdx": "^4.0.4",
"@astrojs/preact": "^4.0.1",
"@astrojs/react": "^4.1.2",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/ts-plugin": "^1.10.4",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"astro": "5.1.4",
"commander": "^13.0.0",
"preact": "^10.25.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-toc": "^9.0.0",
"simple-git": "^3.27.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@ascensiongamedev/rehype-video": "^1.2.6",
"@isnotdefined/stylelint-plugin": "^5.0.0",
"@types/hast": "^3.0.4",
"@types/html-escaper": "^3.0.2",
"@types/jest": "^29.5.14",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"dictionary-en": "^4.0.0",
"dictionary-es": "^4.0.0",
"dictionary-fr": "^3.0.0",
"dictionary-it": "^2.0.0",
"dictionary-nl": "^2.0.0",
"dictionary-pt": "^4.0.0",
"eslint": "^9.17.0",
"eslint-config-preact": "^1.5.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-react": "^7.37.3",
"hast-util-from-html": "^2.0.3",
"hastscript": "^9.0.0",
"html-escaper": "^3.0.3",
"jest": "^29.7.0",
"postcss-html": "^1.7.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-lint": "^10.0.0",
"remark-reference-links": "^7.0.0",
"remark-validate-links": "^13.0.2",
"rollup": "^4.30.1",
"semver": "^7.6.3",
"stylelint": "^16.12.0",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-standard": "^36.0.1",
"stylelint-csstree-validator": "github:csstree/stylelint-validator#ee52d0106ceccaaa28dd74e9967bd4824d013f91",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-no-indistinguishable-colors": "^2.3.0",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"stylelint-order": "^6.0.4",
"stylelint-rem-over-px": "^1.0.2",
"textlint": "^14.4.2",
"textlint-rule-max-comma": "^4.0.0",
"textlint-rule-no-start-duplicated-conjunction": "^2.0.2",
"textlint-rule-spelling": "^0.3.0",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"engines": {
"ts-node": ">= 10.9.1"
},
"license": "MIT",
"name": "@intersect/docs",
"repository": {
"type": "git",
"url": "https://github.com/AscensionGameDev/Intersect-Documentation.git"
},
"scripts": {
"astro": "astro",
"build": "astro build",
"dev": "astro dev",
"eslint": "eslint",
"lint": "tsc --noEmit ; eslint . ; textlint . ; stylelint .",
"lint:fix": "eslint . --fix && textlint . --fix && stylelint . --fix",
"migrate-version": "ts-node --esm ./scripts/migrateVersion.ts",
"preview": "astro preview",
"start": "astro dev",
"stylelint": "stylelint",
"textlint": "textlint"
},
"type": "module",
"version": "0.8.0",
"volta": {
"node": "22.13.0",
"pnpm": "9.15.3"
}
}