-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "@delicious-simplicity/next-image-contentful-loader",
"version": "1.0.4",
"repository": "https://github.com/delicious-simplicity/next-image-contentful-loader.git",
"author": "Devin Metivier <devinmetivier@gmail.com>",
"contributors": [
"Devin Metivier <devin@delicious-simplicity.com>",
"Delicious Simplicity <info@delicious-simplicity.com>"
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"nextjs",
"image",
"contentful",
"loader"
],
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsup",
"build:watch": "tsup --watch",
"lint": "eslint *.ts*",
"lint:fix": "eslint *.ts* --fix",
"test": "vitest"
},
"devDependencies": {
"@delicious-simplicity/eslint-config": "^1.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.2"
}
}