-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 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
{
"name": "@workflow/next",
"version": "4.0.1-beta.74",
"description": "Next.js integration for Workflow SDK",
"type": "commonjs",
"main": "dist/index.js",
"files": [
"dist",
"docs/**/*"
],
"directories": {
"doc": "./docs"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vercel/workflow.git",
"directory": "packages/next"
},
"exports": {
".": "./dist/index.js",
"./loader": "./dist/loader.js",
"./runtime": "./dist/runtime.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean && rm -rf dist docs",
"prepack": "mkdir -p docs && cp ../../docs/content/docs/getting-started/next.mdx ./docs/ && cp -r ../../docs/content/docs/api-reference/workflow-next ./docs/api-reference",
"postpack": "rm -rf docs"
},
"dependencies": {
"@swc/core": "catalog:",
"@workflow/builders": "workspace:*",
"@workflow/core": "workspace:*",
"@workflow/swc-plugin": "workspace:*",
"semver": "catalog:",
"watchpack": "2.5.1"
},
"devDependencies": {
"@types/node": "catalog:",
"@types/semver": "7.7.1",
"@types/watchpack": "2.4.4",
"@workflow/tsconfig": "workspace:*",
"next": "16.2.1"
},
"peerDependencies": {
"next": ">13"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
}
}