-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.48 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.48 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
90
91
92
93
{
"name": "@robertlinde/react-tour-kit",
"version": "0.4.0",
"type": "module",
"description": "Cross-platform guided tour library for React and React Native. Build interactive onboarding experiences with customizable tooltips, smart positioning, cross-page navigation, and async step actions. Fully themeable with TypeScript support.",
"author": "Robert Linde",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robertlinde/react-tour-kit.git"
},
"homepage": "https://github.com/robertlinde/react-tour-kit#readme",
"bugs": {
"url": "https://github.com/robertlinde/react-tour-kit/issues"
},
"scripts": {
"start:dev": "tsc --watch",
"build": "tsc",
"lint": "xo",
"lint:fix": "xo --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:e2e:react": "playwright test --config=playwright/playwright.config.ts",
"test:e2e:react:ui": "playwright test --config=playwright/playwright.config.ts --ui",
"prepublishOnly": "npm run build",
"prepare": "husky || true"
},
"main": "./dist/react.js",
"module": "./dist/react.js",
"types": "./dist/react.d.ts",
"exports": {
"./react": {
"types": "./dist/react.d.ts",
"require": "./dist/react.js",
"import": "./dist/react.js"
},
"./react-native": {
"types": "./dist/react-native.d.ts",
"require": "./dist/react-native.js",
"import": "./dist/react-native.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-native": ">=0.70.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@estruyf/github-actions-reporter": "1.11.0",
"@playwright/test": "1.59.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/react-native": "0.73.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"react": "19.2.5",
"react-dom": "19.2.5",
"typescript": "6.0.2",
"xo": "2.0.2"
},
"keywords": [
"react",
"react-native",
"tour",
"guided-tour",
"walkthrough",
"onboarding",
"tooltip",
"tutorial",
"intro",
"product-tour"
],
"engines": {
"node": ">=20.0.0"
}
}