-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 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
{
"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>"
],
"license": "MIT",
"keywords": [
"nextjs",
"image",
"contentful",
"loader"
],
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"files": [
"cjs",
"esm",
"types"
],
"scripts": {
"prepublishOnly": "pnpm build",
"clean": "rm -rf esm/ && rm -rf cjs/ && rm -rf types/ && rm -rf dist/",
"build": "pnpm build:esm && pnpm build:cjs && pnpm build:types",
"build:watch": "tsc-watch -p ./tsconfig.json --onSuccess 'pnpm build'",
"build:cjs": "ncc build src/index.ts -o cjs -m -e react",
"build:esm": "tsc --target ESNext --module ES6 --outDir esm",
"build:types": "tsc --d --declarationMap --declarationDir types",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.jsx,.tsx --fix",
"test": "jest"
},
"devDependencies": {
"@delicious-simplicity/eslint-config": "^1.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^17.0.23",
"@vercel/ncc": "^0.34.0",
"jest": "^29.0.3",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.2",
"typescript": "^4.8.3"
}
}