This repository was archived by the owner on Aug 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.28 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
{
"name": "next-image-trace-loader",
"version": "1.1.5",
"description": "Display a SVG traced image while your images lazy load for NextJS projects.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"lint": "prettier --write src/index.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrandonKlotz/next-image-trace.git"
},
"keywords": [
"next",
"nextjs",
"image-trace-loader",
"next-image-trace",
"svg",
"traced",
"image",
"plugin",
"react"
],
"author": "Brandon Klotz",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrandonKlotz/next-image-trace/issues"
},
"homepage": "https://github.com/BrandonKlotz/next-image-trace#readme",
"dependencies": {
"file-loader": "^6.2.0",
"image-trace-loader": "^1.0.2",
"url-loader": "^4.1.1"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@types/react": "^17.0.1",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"next": "^10.0.6",
"prettier": "2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^1.29.0",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^4.1.5"
},
"files": [
"dist"
]
}