-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "nextstepjs",
"version": "2.2.0",
"description": "Lightweight onboarding library for Next.js",
"license": "MIT",
"author": "Alex Enes Zorlu",
"homepage": "https://nextstepjs.com",
"repository": {
"type": "git",
"url": "git+https://github.com/enszrlu/NextStep.git"
},
"keywords": [
"react-onboarding",
"react-nextstep",
"nextjs-onboarding",
"nextjs-onboard",
"onboarding-wizard",
"onboarding",
"nextstep",
"wizard",
"react",
"nextjs",
"product-tour",
"tour",
"demo",
"product-demo",
"onboarding-library",
"onboarding-component",
"onboarding-flow",
"onboarding-tutorial",
"onboarding-guide"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"start": "npm run build && node dist/index.js"
},
"peerDependencies": {
"@remix-run/react": ">=1.0.0",
"motion": ">=11",
"next": ">=13.0.0",
"react": ">=18",
"react-dom": ">=18",
"react-router": ">=7.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"react-router": {
"optional": true
},
"@remix-run/react": {
"optional": true
}
},
"devDependencies": {
"@remix-run/react": "^2.0.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-router": "^5.1.20",
"next": "^14.0.0",
"react-compiler-runtime": "19.0.0-beta-201e55d-20241215",
"typescript": "^5.6.2"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./adapters/next": {
"import": "./dist/adapters/next/index.js",
"types": "./dist/adapters/next/index.d.ts"
},
"./adapters/react-router": {
"import": "./dist/adapters/react-router/index.js",
"types": "./dist/adapters/react-router/index.d.ts"
},
"./adapters/remix": {
"import": "./dist/adapters/remix/index.js",
"types": "./dist/adapters/remix/index.d.ts"
}
}
}