-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "@kivra/toybox",
"version": "1.0.1",
"description": "",
"main": "src/public.ts",
"bin": {
"toybox": "src/cli/cli.ts"
},
"scripts": {
"test": "vitest",
"start": "./src/cli/cli.ts",
"typecheck": "tsc",
"e2e:unit:test": "vitest run"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": "git@github.com:kivra/toybox.git",
"author": "",
"license": "ISC",
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"dependencies": {
"@emotion/css": "11.11.2",
"@emotion/styled": "11.11.5",
"@mantine/code-highlight": "7.10.2",
"@mantine/core": "7.10.2",
"@mantine/hooks": "7.10.2",
"@tabler/icons-react": "3.6.0",
"@types/express": "4.17.21",
"@vitejs/plugin-react": "4.3.1",
"express": "4.19.2",
"markdown-to-jsx": "7.4.7",
"mobx": "6.12.4",
"mobx-react-lite": "4.0.7",
"react-router-dom": "5.3.4",
"tsm": "2.3.0",
"vite": "5.3.3"
},
"devDependencies": {
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.4.5",
"vitest": "2.0.2"
},
"volta": {
"node": "22.2.0",
"pnpm": "9.1.1"
}
}