-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.36 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.36 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@anu3ev/fabric-image-editor",
"version": "0.6.7",
"description": "JavaScript image editor built on FabricJS, allowing you to create instances with an integrated montage area and providing an API to modify and manage state.",
"module": "dist/main.js",
"files": [
"dist"
],
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "vite --config vite.config.dev.js",
"dev:build": "vite build --watch --mode development --config vite.config.dev.js",
"prebuild": "npm install",
"build": "vite build --config vite.config.prod.js",
"build:docs": "vite build --config vite.config.docs.js",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{js,ts}\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:coverage": "jest --coverage --coverageReporters=json-summary --coverageReporters=lcov --coverageReporters=text"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.28.3",
"@eslint/js": "^9.16.0",
"@playwright/test": "^1.58.2",
"@types/fabric": "^5.3.10",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-vue": "^9.33.0",
"globals": "^15.15.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"vite": "^6.3.5",
"vite-bundle-analyzer": "^0.21.0",
"vite-plugin-babel": "^1.3.0",
"vite-plugin-static-copy": "^3.1.1",
"vue-eslint-parser": "^10.1.3"
},
"dependencies": {
"diff-match-patch": "^1.0.5",
"fabric": "^6.9.1",
"jsondiffpatch": "^0.6.2",
"jspdf": "^3.0.1",
"nanoid": "^5.0.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anu3ev/image-editor.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://Anu3ev.github.io/image-editor",
"license": "MIT"
}