-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
27 lines (27 loc) · 1.5 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
{
"name": "nf-co.re",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"build-cache": "npm run build-pipeline-json && npm run build-component-json && npm run build-md-cache",
"build-md-cache": "node bin/build-cache.js && tar -cvJf .cache.tar.xz .cache && node bin/build-content-collection",
"build-md-cache-force": "node bin/build-cache.js --force && tar -cvJf .cache.tar.xz .cache && node bin/build-content-collection",
"build-cache-no-tar": "npm run build-pipeline-json && npm run build-component-json && node bin/build-cache.js && node bin/build-content-collection",
"build-cache-force": "npm run build-pipeline-json && npm run build-component-json && npm run build-md-cache-force",
"build": "npm run extract-cache && NODE_OPTIONS='--max-old-space-size=4096' astro build",
"build-without-cache": "npm run build-cache-no-tar && astro build",
"build-pipeline-json": "tar -xf .cache.tar.xz && node bin/pipelines.json.js && tar -cvJf .cache.tar.xz .cache",
"build-component-json": "node bin/components.json.js",
"extract-cache": "tar -xf .cache.tar.xz && node bin/build-content-collection",
"update": "for dir in sites/*; do (cd $dir && npx ncu --interactive --format group); done",
"test-all": "for dir in sites/*; do (cd $dir && npm run test); done"
},
"workspaces": [
"sites/*"
],
"dependencies": {
"remark": "^15.0.1",
"unist-util-visit": "^5.0.0"
}
}