-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "extractinator",
"version": "0.5.0",
"type": "module",
"description": "A tool to extract the api information from Svelte and TS/JS files. Extract slots, events, module exports, props, and css props all with parsed tsdoc comments.",
"contributors": [
"Braden Wiggins <[email protected]> (https://fractal-hq.com/)",
"Willow (GHOST) <[email protected]> (https://ghostdev.xyz)"
],
"scripts": {
"extractinator": "DEBUG=1 vite-node src/exports/cli.ts --",
"extractinator:watch": "DEBUG=1 vite-node --watch src/exports/cli.ts --",
"playground": "pnpm run extractinator extract playground playground/out",
"build": "tsup-node && publint",
"build:watch": "tsup-node --watch",
"test": "vitest"
},
"dependencies": {
"@fastify/deepmerge": "^2.0.0",
"@microsoft/tsdoc": "^0.15.0",
"@microsoft/tsdoc-config": "^0.17.0",
"chalk": "^5.3.0",
"desm": "^1.3.1",
"sade": "^1.8.1",
"svelte": "^4.2.19",
"svelte2tsx": "^0.7.19",
"tiny-glob": "^0.2.9",
"ts-morph": "^23.0.0",
"typescript": "^5.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^18.19.50",
"publint": "^0.2.11",
"tsup": "^8.3.0",
"vite": "^5.4.6",
"vite-node": "^2.1.1",
"vitest": "^2.1.1"
},
"homepage": "https://github.com/ghostdevv/extractinator",
"repository": {
"type": "git",
"url": "git+https://github.com/ghostdevv/extractinator"
},
"bugs": {
"url": "https://github.com/ghostdevv/extractinator"
},
"bin": "./dist/cli.js",
"main": "./dist/package.cjs",
"module": "./dist/package.js",
"types": "./dist/package.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/package.d.cts",
"require": "./dist/package.cjs"
},
"import": {
"types": "./dist/package.d.ts",
"import": "./dist/package.js"
}
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"volta": {
"node": "18.20.4",
"pnpm": "8.15.9"
}
}