-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 993 Bytes
/
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
{
"name": "fission-editor",
"type": "module",
"source": "./src/index.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
}
},
"scripts": {
"typegen": "xstate typegen \"./src/**/*.ts?(x)\"",
"build": "nanobundle build",
"test": "vitest"
},
"dependencies": {
"@remirror/pm": "^2.0.1",
"@remirror/react": "^2.0.18",
"@xstate/immer": "^0.3.1",
"@xstate/inspect": "^0.7.0",
"@xstate/react": "^3.0.1",
"immer": "^9.0.16",
"remirror": "^2.0.17",
"xstate": "^4.34.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^2.2.0",
"@xstate/cli": "^0.3.3",
"nanobundle": "^0.0.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vitest": "^0.25.2"
},
"packageManager": "[email protected]"
}