-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "@h4md1/visual-image-tool",
"version": "1.0.0",
"description": "Un outil léger en JavaScript vanilla pour définir des points focaux et zones de recadrage sur des images",
"main": "dist/image-tool.js",
"module": "dist/image-tool.esm.js",
"browser": "dist/image-tool.umd.js",
"files": ["dist", "src"],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"demo": "npx http-server -o ./demo",
"publish:demo": "gh-pages -d demo",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"lint:check": "biome check .",
"lint:fix": "biome check --write .",
"format:check": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown ."
},
"keywords": [
"image",
"crop",
"focus-point",
"vanilla-js",
"image-editor",
"crop-tool"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"gh-pages": "^6.3.0",
"prettier": "3.5.3",
"rollup": "^4.12.0"
},
"type": "module",
"engines": {
"node": ">=18.0.0 <23.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/killerwolf/visual-image-tool.git"
},
"bugs": {
"url": "https://github.com/killerwolf/visual-image-tool/issues"
},
"homepage": "https://github.com/killerwolf/visual-image-tool#readme"
}