forked from typhonjs-fvtt-lib/api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@typhonjs-fvtt-lib/api-docs",
"version": "0.1.2",
"description": "Provides comprehensive documentation for the TyphonJS Runtime Library (Foundry VTT edition).",
"license": "MPL-2.0",
"private": true,
"type": "module",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"sideEffects": false,
"imports": {
"#runtime/*": "./.doc-gen/#runtime/*/index.d.ts",
"#standard/*": "./.doc-gen/#standard/*/index.d.ts",
"#svelte/internal": "svelte/internal",
"#svelte/*": "./.doc-gen/svelte/*/index.d.ts",
"#svelte": "./.doc-gen/svelte/index.d.ts"
},
"exports": {
"./plugin/foundry-links": {
"types": "./types/index-plugin.d.ts",
"require": "./dist/plugin/foundry-links/index.cjs"
}
},
"devDependencies": {
"@types/node": "^20.3.3",
"@typhonjs-build-test/node": "^0.0.11",
"@typhonjs-fvtt/runtime": "0.1.2",
"@typhonjs-fvtt/svelte-standard": "0.1.0",
"@typhonjs-typedoc/typedoc-theme-dmt": "^0.2.0-next.14",
"@typhonjs-typedoc/ts-lib-docs": "2023.7.12",
"svelte": "^4.2.15",
"sirv-cli": "^2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"upath": "^2.0.1"
},
"browserslist": [">5%", "not IE 11"],
"scripts": {
"build-docs": "node src/generate/generate.js",
"build-plugin": "rollup -c",
"eslint": "eslint .",
"serve": "sirv ./docs --host"
}
}