-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.16 KB
/
package.json
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
{
"name": "react-onboardx",
"version": "0.0.15",
"description": "React Onboarding Tool Kit is a flexible, easy-to-use package for creating guided tours and onboarding experiences in React applications. It provides a headless approach, allowing you to maintain full control over your UI while leveraging powerful onboarding logic.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c ",
"test": "jest --coverage",
"ci": "npm run build && npm run test",
"release": "standard-version"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"jest": "^29.7.0",
"rollup-plugin-dts": "^6.1.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5"
},
"dependencies": {
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}