-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "solid-image",
"version": "0.0.29",
"description": "Use the Sharp Image Library to quickly create images and HTML code",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"type": "module",
"homepage": "https://github.com/webmastersmith/solid-image#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -fr lib/* && tsc",
"prepub": "npm run build",
"pub": "npm version patch --no-git-tag-version && npm publish",
"dry": "npm publish --dry-run"
},
"keywords": [
"responsive",
"image",
"img",
"picture",
"resolution switching",
"Art Direction"
],
"author": "Bryon Smith",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.13.0",
"@types/sharp": "^0.31.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"console-progress-bar": "^1.0.8",
"sharp": "^0.31.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webmastersmith/solid-images"
}
}