-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 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
{
"name": "next-easytour",
"version": "0.3.0",
"description": "Generalizable interactive tutorial overlay library for React/Next.js. CSS-selector targeting, step actions, waitFor conditions, auto-scroll, highlight effects, animated transitions — all composable and declarative.",
"keywords": [
"tutorial",
"onboarding",
"walkthrough",
"tour",
"guide",
"overlay",
"nextjs",
"react",
"svg-arrow",
"interactive",
"product-tour",
"headless",
"composable",
"animated"
],
"license": "MIT",
"author": "Jan P Hummel",
"repository": {
"type": "git",
"url": "git+https://github.com/github4touchdouble/next-easytour.git"
},
"bugs": {
"url": "https://github.com/github4touchdouble/next-easytour/issues"
},
"homepage": "https://github.com/github4touchdouble/next-easytour#readme",
"type": "module",
"sideEffects": [
"./dist/styles.css"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./styles.css": "./dist/styles.css",
"./tutorial.schema.json": "./tutorial.schema.json",
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"tutorial.schema.json",
"CHANGELOG.md",
"README.md",
"AGENTS.md",
"LLMS.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --external react --external react-dom && cp src/styles.css dist/styles.css",
"dev": "tsup src/index.ts --format esm --dts --external react --external react-dom --watch",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"jsdom": "^25.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}