-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.89 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.89 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
{
"$schema": "http://json.schemastore.org/package",
"name": "@open-resource-discovery/specification",
"version": "1.14.4",
"description": "Open Resource Discovery (ORD) Specification",
"author": "SAP SE",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22.0.0",
"npm": ">=11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-resource-discovery/specification.git"
},
"files": [
"README.md",
"dist/index.js",
"dist/index.d.ts",
"dist/generated/spec/v1"
],
"scripts": {
"docusaurus": "docusaurus",
"build": "npm run generate && npm run build:ts && npm run build:docusaurus",
"clean": "node src/helper/clean.mjs",
"build:ts": "tsc -p ./tsconfig.json",
"build:docusaurus": "docusaurus build",
"format": "biome format --write .",
"lint": "biome lint .",
"test": "npm run build:ts && node --test dist/**/*.test.js",
"serve": "docusaurus serve",
"start": "docusaurus start",
"deploy": "npm run build && gh-pages -d ./build",
"pregenerate": "npm run clean",
"generate": "npx @open-resource-discovery/spec-toolkit -c ./spec-toolkit.config.json",
"postgenerate": "ts-node ./src/helper/copyGeneratedToDestination.ts",
"generate:llm-notebook": "npm run generate && ts-node ./src/helper/exportForNotebookLM.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@docusaurus/core": "3.9.2",
"@docusaurus/plugin-client-redirects": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/theme-mermaid": "3.9.2",
"@easyops-cn/docusaurus-search-local": "0.55.1",
"@mdx-js/react": "3.1.1",
"@open-resource-discovery/spec-toolkit": "0.8.0",
"@types/fs-extra": "11.0.4",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"clsx": "2.1.1",
"fs-extra": "11.3.4",
"lefthook": "2.1.4",
"prism-react-renderer": "2.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"ts-node": "10.9.2"
}
}