-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"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": "echo \"Error: no test specified\" && exit 1",
"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.12.0",
"parcel": "^2.13.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"vite": "^6.0.1"
},
"dependencies": {
"vitest": "^1.6.0"
},
"pnpm": {
"overrides": {
"get-func-name@<2.0.1": ">=2.0.1"
}
}
}