-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "dummyimagejs",
"version": "1.0.6",
"description": "Extremely simple image generator with customizable caching",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"serve": "parcel index.ts",
"build": "parcel build index.ts && tsc --emitDeclarationOnly",
"serve-documentation": "parcel docs/index.html --open",
"build-documentation": "parcel build docs/index.html",
"publish": "npm publish"
},
"dependencies": {},
"devDependencies": {
"htm": "^3.1.1",
"parcel-bundler": "^1.12.5",
"preact": "^10.25.3",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"resolutions": {
"@babel/preset-env": "7.13.8"
},
"repository": {
"type": "git",
"url": "https://github.com/VasiliyRusin/dummy-image.git"
},
"bugs": {
"url": "https://github.com/VasiliyRusin/dummy-image/issues"
},
"homepage": "https://github.com/VasiliyRusin/dummy-image#readme",
"license": "CC0-1.0",
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"pragmaFrag": "Fragment"
}
]
],
"keywords": [
"image",
"preview",
"generator"
]
}