-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.63 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
{
"name": "@aidc-toolkit/doc",
"version": "1.0.59",
"description": "Documentation for AIDC Toolkit",
"type": "module",
"private": true,
"homepage": "https://aidc-toolkit.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aidc-toolkit/aidc-toolkit.github.io.git"
},
"bugs": {
"url": "https://github.com/aidc-toolkit/aidc-toolkit.github.io/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Kevin Dean",
"email": "Kevin.Dean@datadevelopment.com",
"url": "https://www.linkedin.com/in/kdean"
},
"scripts": {
"lint": "eslint",
"typedoc": "typedoc && replace --silent 'https://aidc-toolkit\\.com/v\\d+.\\d+/api/' '../' site/api --include index.md --recursive",
"generate-app-extension-documentation": "tsx src/generator.ts",
"build:base": "npm run typedoc && npm run generate-app-extension-documentation && vitepress build",
"build:alpha": "tsc --noEmit && tsc --project tsconfig-config.json --noEmit && npm run build:base",
"build:doc": "npm run build:base",
"server": "vitepress dev --host",
"server-preview": "npm run build:doc && vitepress preview"
},
"devDependencies": {
"@aidc-toolkit/app-extension": "^1.0.54",
"@aidc-toolkit/core": "^1.0.48",
"@aidc-toolkit/dev": "^1.0.47",
"mermaid": "^11.15.0",
"replace": "^1.2.2",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typedoc-plugin-mdn-links": "^5.1.1",
"typedoc-vitepress-theme": "^1.1.3",
"typescript": "<6.0.0",
"vite": "<6.0.0",
"vite-plugin-static-copy": "^3.4.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17"
}
}