-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.63 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@combostrap/interact",
"version": "0.1.0-next",
"license": "FSL-1.1-ALv2",
"type": "module",
"description": "A React publication framework to create documentation where users can log in and interact with it",
"bin": "src/interact/cli/run.js",
"repository": "https://github.com/combostrap/interact",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "src/interact/cli/dev.js start --confPath=apps/site",
"site": "src/interact/cli/dev.js start --confPath=../../gerardnico/com-gerardnico",
"ssg": "src/interact/cli/dev.js build --confPath=apps/site",
"preview": "src/interact/cli/dev.js preview --confPath=apps/site"
},
"files": [
"dist/interact/cli/**/*",
"dist/interact/config/**/*",
"src/**/*"
],
"exports": {
"./types": "./src/interact/types/index.d.ts",
"./components/*": "./src/interact/components/*/index.js",
"./markdown": "./src/interact/markdown/processing/interactMarkdownProcessor.js",
"./config": "./src/interact/config/interactConfig.js"
},
"dependencies": {
"@mdx-js/rollup": "3.1.1",
"@oclif/core": "4.8.2",
"@realfavicongenerator/generate-favicon": "0.6.3",
"@realfavicongenerator/image-adapter-node": "0.6.3",
"@stefanprobst/rehype-extract-toc": "^3.0.0",
"@svgr/core": "8.1.0",
"@svgr/plugin-jsx": "8.1.0",
"@svgr/plugin-svgo": "8.1.0",
"@vitejs/plugin-react": "5.1.4",
"@vitejs/plugin-rsc": "0.5.20",
"clsx": "2.1.1",
"etag": "1.8.1",
"glob": "13.0.6",
"hastscript": "9.0.1",
"mrmime": "2.0.1",
"picocolors": "*",
"react": "19.2.4",
"react-dom": "19.2.4",
"rehype-autolink-headings": "7.1.0",
"rehype-react": "8.0.0",
"rehype-slug": "6.0.0",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.1",
"remark-mdx-frontmatter": "5.2.0",
"rollup": "*",
"rsc-html-stream": "0.0.7",
"sharp": "0.34.5",
"svgo": "4.0.1",
"ts-node": "10.9.2",
"vite": "7.3.1",
"vite-plugin-svgr": "4.5.0",
"zod": "4.3.6"
},
"devDependencies": {
"@types/etag": "1",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"@types/mdx": "2.0.13",
"@types/node": "25.3.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"packageManager": "yarn@4.12.0",
"oclif": {
"description": "Interact Cli",
"version": "0.1.0",
"bin": "interact",
"dirname": "interact",
"commands": "dist/interact/cli/commands",
"topicSeparator": " "
},
"resolutions": {
"sharp": "0.34.5",
"@types/react": "19.2.14",
"react": "19.2.4",
"react-dom": "19.2.4"
}
}