-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.52 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
{
"name": "@xpack/docusaurus-template-liquid",
"version": "1.1.0",
"description": "The template used to generate the Docusaurus websites for the xPack projects from files with liquid substitutions",
"repository": {
"type": "git",
"url": "git+https://github.com/xpack/docusaurus-template-liquid.git"
},
"keywords": [
"scripts",
"docusaurus",
"template",
"liquid"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack/docusaurus-template-liquid/issues"
},
"homepage": "https://github.com/xpack/docusaurus-template-liquid#readme",
"devDependencies": {
"@xpack/npm-packages-helper": "github:xpack/npm-packages-helper",
"del-cli": "^7.0.0",
"json": "^11.0.0",
"liquidjs": "^10.25.0"
},
"scripts": {
"xpack-generate-websites-commons-and-build-restart": "bash maintenance-scripts/websites-generate-commons-and-build.sh --xpack --restart",
"xpack-generate-websites-commons-and-build": "bash maintenance-scripts/websites-generate-commons-and-build.sh --xpack",
"xpack-commit-websites": "bash maintenance-scripts/websites-commit-and-push.sh --xpack",
"xpack-commit-and-push-websites": "bash maintenance-scripts/websites-commit-and-push.sh --xpack --push",
"xpack-dev-tools-generate-websites-commons-and-build-restart": "bash maintenance-scripts/websites-generate-commons-and-build.sh --xpack-dev-tools --restart",
"xpack-dev-tools-generate-websites-commons-and-build": "bash maintenance-scripts/websites-generate-commons-and-build.sh --xpack-dev-tools",
"xpack-dev-tools-commit-websites": "bash maintenance-scripts/websites-commit-and-push.sh --xpack-dev-tools",
"xpack-dev-tools-commit-and-push-websites": "bash maintenance-scripts/websites-commit-and-push.sh --xpack-dev-tools --push",
"xpack-dev-tools-import-websites-releases": "bash maintenance-scripts/websites-import-releases.sh --xpack-dev-tools",
"xpack-dev-tools-remove-web-tags": "bash maintenance-scripts/websites-remove-web-tags.sh --xpack-dev-tools",
"npm-install": "npm install",
"npm-link-helpers": "npm link @xpack/npm-packages-helper",
"npm-outdated": "npm outdated",
"npm-pack": "npm pack",
"npm-link": "npm link",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"deep-clean": "del-cli node_modules package-lock.json *.tgz",
"postversion": "git push origin --all && git push origin --tags"
},
"engines": {
"node": ">=20.0.0"
}
}