-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
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
{
"name": "blurrio",
"version": "0.1.4",
"description": "Generate blur from image",
"homepage": "https://github.com/thecuvii/blurrio#readme",
"bugs": {
"url": "https://github.com/thecuvii/blurrio/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thecuvii/blurrio.git"
},
"license": "MIT",
"author": "Cuvii <xw5427@gmail.com>",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
}
},
"module": "./dist/browser/index.js",
"types": "./dist/browser/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "next build",
"dev": "next dev & npx goloco -d blurrio -p 3000",
"lint": "next lint",
"prepublishOnly": "npx bunchee",
"release": "npx bumpp && pnpm publish",
"start": "next start",
"test": "npx vitest"
},
"dependencies": {
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@tanstack/react-query": "^5.22.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"compressorjs": "^1.2.1",
"lucide-react": "^0.338.0",
"next": "14.1.0",
"pretty-bytes": "^6.1.1",
"react": "^18",
"react-compare-slider": "^3.0.1",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"sharp": "^0.33.2",
"shiki": "^1.1.7",
"stackblur-canvas": "^2.7.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vitest": "^1.3.1"
},
"packageManager": "pnpm@8.15.3"
}