-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
49
50
51
52
53
54
55
{
"name": "solid-docgen",
"version": "0.0.0-dev",
"description": "A library to extract information from Solid components for documentation generation.",
"type": "module",
"sideEffects": false,
"scripts": {
"check": "biome check",
"format": "biome check --write",
"typecheck": "tsc --noEmit",
"release": "pnpm tsx scripts/release.ts",
"test": "vitest run",
"test:ui": "vitest --ui",
"dev:docs": "pnpm -F solid-docgen-docs dev",
"build": "#"
},
"keywords": [
"solid",
"solidjs",
"documentation",
"documentation-generation"
],
"author": "jer3m01 <jer3m01@jer3m01.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/kobaltedev/solid-docgen"
},
"files": [
"/src"
],
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
},
"./stringify": {
"import": "./src/stringify.ts",
"types": "./src/stringify.ts"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@octokit/core": "^6.1.6",
"@types/node": "^22.19.15",
"@vitest/ui": "^3.2.4",
"solid-js": "^1.9.11",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"ts-morph": "^25.0.1"
},
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
}