-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.08 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
76
77
78
79
80
81
82
{
"name": "nuxt-xstate",
"version": "0.6.2",
"license": "MIT",
"type": "module",
"repository": "Lexpeartha/nuxt-xstate",
"description": "XState integration for Nuxt",
"author": "Lexpeartha",
"keywords": [
"nuxt",
"module",
"state",
"nuxt-module",
"xstate",
"xstate-library",
"state-machines",
"web"
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:preview": "nuxi preview playground",
"dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground",
"docs:dev": "vitepress dev docs --port 4000",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --config=.eslintrc --ext .js,.ts,.vue .",
"test": "vitest run",
"test:watch": "vitest",
"test:types": "tsc --noEmit",
"test:coverage": "vitest run --coverage",
"bump": "bumpp"
},
"dependencies": {
"@nuxt/kit": "^3.6.5",
"@xstate/fsm": "^2.1.0",
"@xstate/vue": "^2.0.0",
"unimport": "^3.0.14",
"xstate": "^4.38.3",
"xstate-vue2": "^0.3.2"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/schema": "^3.6.5",
"@nuxt/test-utils": "^3.6.5",
"@nuxt/vite-builder": "^3.6.5",
"@nuxt/webpack-builder": "^3.6.5",
"@nuxtjs/eslint-config-typescript": "12.0.0",
"bumpp": "^9.1.1",
"eslint": "latest",
"node-fetch-native": "^1.2.0",
"nuxt": "^3.6.5",
"playwright": "^1.35.1",
"typescript": "5.0.4",
"vitepress": "v1.0.0-beta.3",
"vitest": "^0.32.4",
"vue": "^3.3.13",
"vue-demi": "^0.14.7",
"vue-router": "^4.2.5"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"@xstate/vue",
"xstate-vue2"
]
}
}
}