-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
47
48
49
50
51
{
"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": {
"@parcel/packager-ts": "^2.13.3",
"@parcel/transformer-typescript-types": "^2.13.3",
"@types/node": "^22.13.4",
"parcel": "^2.13.3",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"vite": "^6.1.0"
},
"dependencies": {
"vitest": "^3.0.6"
},
"pnpm": {
"overrides": {
"get-func-name@<2.0.1": ">=2.0.1"
},
"onlyBuiltDependencies": [
"@swc/core"
]
},
"packageManager": "[email protected]+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af"
}