-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "test-ts-doc",
"version": "1.0.0",
"description": "test documentation generation",
"source": "src/index.ts",
"main": "dist/ts-doc.umd.cjs",
"module": "dist/ts-doc.umd.cjs",
"types": "dist/types.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"build:docs": "typedoc",
"check": "tsc --noEmit",
"tsc": "tsc",
"test": "vitest --run --passWithNoTests",
"serve:docs": "vite function-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpbnetley/test-ts-doc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jpbnetley/test-ts-doc/issues"
},
"homepage": "https://github.com/jpbnetley/test-ts-doc#readme",
"devDependencies": {
"@types/node": "^24.12.2",
"typedoc": "^0.28.18",
"typescript": "^6.0.2",
"vite": "^8.0.7"
},
"dependencies": {
"vitest": "^4.1.3"
},
"pnpm": {
"overrides": {
"get-func-name@<2.0.1": ">=2.0.1"
},
"onlyBuiltDependencies": [
"esbuild"
]
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}