-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
{
"name": "circular-queue-react",
"version": "1.0.3",
"description": "High-performance circular buffer/queue for TypeScript and React - Perfect for logs, streaming data, and real-time updates",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"circular-buffer",
"buffer",
"data-structures",
"queue",
"ring-buffer",
"typescript",
"streaming",
"logs",
"cache",
"react",
"react-hooks"
],
"author": "Kwon KyoungMin <lanos0609@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.0.0 || ^19.0.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^2.1.6",
"happy-dom": "^20.0.11",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.0.0",
"vitest": "^2.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/km-kwon/react-circular-queue.git"
},
"bugs": {
"url": "https://github.com/km-kwon/react-circular-queue/issues"
},
"homepage": "https://github.com/km-kwon/react-circular-queue#readme"
}