-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 2.14 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
{
"name": "jquery-docs",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev --port 4335",
"dev:en": "cross-env DOCS_ENV=development DOCS_LANG=en astro dev --port 4335",
"dev:jp": "cross-env DOCS_ENV=development DOCS_LANG=jp astro dev --port 4335",
"build:en": "cross-env DOCS_ENV=production DOCS_LANG=en NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery",
"build:jp": "cross-env DOCS_ENV=production DOCS_LANG=jp NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery-jp",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 astro build",
"build-staging": "cross-env DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery",
"build-staging:en": "cross-env DOCS_ENV=staging NODE_ENV=production DOCS_LANG=en NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery",
"build-staging:jp": "cross-env DOCS_ENV=staging NODE_ENV=production DOCS_LANG=jp NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery-jp",
"build-production": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery",
"build-production:en": "cross-env NODE_ENV=production DOCS_LANG=en NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery",
"build-production:jp": "cross-env NODE_ENV=production DOCS_LANG=jp NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/jquery-jp",
"preview": "astro preview --outDir=../../dist/jquery --port 4335",
"preview:en": "cross-env DOCS_LANG=en astro preview --outDir=../../dist/jquery --port 4335",
"preview:jp": "cross-env DOCS_LANG=jp astro preview --outDir=../../dist/jquery-jp --port 4335",
"astro": "astro"
},
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@astrojs/mdx": "^5.0.0",
"@astrojs/starlight": "^0.38.3",
"astro": "^6.1.6",
"docs-template": "file:../../",
"sharp": "^0.34.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"js-yaml": "^4.1.1",
"sass-embedded": "^1.98.0"
}
}