-
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.25 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.25 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": "next-use-funnel",
"description": "@toss/use-funnel in latest Next.js App Router",
"repository": {
"type": "git",
"url": "git+https://github.com/CodePsy-2001/next-use-funnel.git"
},
"keywords": [
"next",
"next.js",
"react",
"funnel",
"use-funnel",
"router",
"app-router"
],
"version": "0.3.2",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"workspaces": [
"example"
],
"sideEffects": false,
"files": [
"dist",
"package.json",
"README.md"
],
"browser": "./dist/index",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "vite build",
"test": "vitest",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"prepublishOnly": "vite build"
},
"devDependencies": {
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.1.0",
"eslint-config-next": "^14.2.2",
"eslint-plugin-prettier": "^5.1.3",
"jsdom": "^24.0.0",
"next": "^14.2.2",
"next-router-mock": "^0.9.13",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.8.3",
"vitest": "^1.5.0"
},
"peerDependencies": {
"next": "^14",
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18",
"swr": "^2"
},
"dependencies": {
"@toss/assert": "^1.2.0",
"@toss/storage": "^1.4.0"
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/CodePsy-2001/next-use-funnel/issues"
},
"homepage": "https://github.com/CodePsy-2001/next-use-funnel#readme"
}