-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.35 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.35 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
{
"name": "@anu3ev/fabric-image-editor",
"version": "0.9.5",
"description": "TypeScript image editor library 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:e2e": "vite --config vite.config.dev.js --host 127.0.0.1 --port 4173",
"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",
"test:e2e": "npx playwright test"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.58.2",
"@types/fabric": "^5.3.11",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.2",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-basic-ssl": "^2.2.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": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-vue": "^9.33.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"vite": "^8.0.1",
"vite-bundle-analyzer": "^1.3.6",
"vite-plugin-static-copy": "^3.3.0",
"vue-eslint-parser": "^10.4.0"
},
"dependencies": {
"fabric": "^7.2.0",
"jsondiffpatch": "^0.7.3",
"jspdf": "^4.2.1",
"nanoid": "^5.1.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anu3ev/image-editor.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://Anu3ev.github.io/image-editor",
"license": "MIT"
}