-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.58 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.58 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
{
"name": "react-state-timeline",
"description": "React hook that tracks your state changes over time, with undo/redo and timeline navigation.",
"version": "1.1.2",
"type": "module",
"author": {
"name": "Mohammad Nazari",
"email": "mohammadnazary2000@gmail.com",
"url": "https://github.com/nazari2079"
},
"scripts": {
"start:docs": "cd docs && npm run start",
"build:docs": "cd docs && npm run build",
"deploy:docs": "npm run build:docs && gh-pages -d docs/build",
"test": "vitest",
"build": "vitest --run && rm -rf dist && tsc && vite build",
"lint": "eslint --fix lib/**/* --report-unused-disable-directives --max-warnings 0 --no-warn-ignored -f codeframe",
"format": "prettier lib/**/* --write --ignore-unknown",
"preview": "vite preview",
"prepare": "husky install",
"commit": "cz",
"pre-commit": "lint-staged",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/nazari2079/react-state-timeline"
},
"homepage": "https://nazari2079.github.io/react-state-timeline/",
"bugs": {
"url": "https://github.com/nazari2079/react-state-timeline/issues"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react",
"reactjs",
"javascript",
"typescript",
"utility",
"library",
"state",
"timeline",
"undo",
"redo",
"state-managment",
"frontend",
"react-hooks",
"hook"
],
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.29.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^4.5.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.29.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"gh-pages": "^6.3.0",
"globals": "^16.2.0",
"husky": "^8.0.0",
"jsdom": "^27.0.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2",
"vitest": "^3.2.4"
}
}