-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.15 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
86
87
88
89
{
"name": "@oqlet/react-driver",
"version": "1.0.2",
"description": "Schema-driven, plug-and-play guided tours for React — built on driver.js.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"CHANGELOG.md",
"CONTRIBUTING.md",
"llms.txt"
],
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./driver.css": "./dist/driver.css",
"./umd": "./dist/react-driver.umd.js",
"./testing": {
"types": "./dist/testing.d.cts",
"import": "./dist/testing.mjs",
"require": "./dist/testing.js"
}
},
"scripts": {
"build": "tsup && node scripts/copy-css.mjs",
"vercel-build": "npm --prefix website ci && npm --prefix website run build",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"keywords": [
"react",
"tour",
"guided-tour",
"onboarding",
"walkthrough",
"driver.js",
"product-tour",
"react-tour",
"schema-driven",
"typescript",
"headless"
],
"author": "Goutham Posannapeta",
"license": "MIT",
"type": "module",
"sideEffects": [
"./dist/driver.css"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"driver.js": "^1.3.1"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jsdom": "^26.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.5.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goutham-05/react-driver.git"
},
"bugs": {
"url": "https://github.com/goutham-05/react-driver/issues"
},
"homepage": "https://www.react-driver.com/"
}