-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "@workflow/nuxt",
"version": "4.0.1-beta.28",
"description": "Nuxt integration for Workflow DevKit",
"license": "Apache-2.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/vercel/workflow.git",
"directory": "packages/nuxt"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build prepare && nuxt-module-build build",
"dev": "nuxt-module-build build --stub && nuxt-module-build prepare",
"clean": "nuxi cleanup && rm -rf dist/"
},
"dependencies": {
"@nuxt/kit": "4.2.0",
"@workflow/nitro": "workspace:*"
},
"devDependencies": {
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.2.0",
"@types/node": "catalog:",
"@workflow/tsconfig": "workspace:*",
"nuxt": "4.0.0"
}
}