-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
98 lines (98 loc) · 2.13 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "mini-canvas-core",
"description": "Core library for Mini Canvas Editor.",
"version": "0.3.1",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"main": "./lib/cjs/index.browser.cjs",
"types": "./lib/index.browser.d.ts",
"exports": {
".": {
"types": {
"require": "./lib/index.browser.d.ts",
"default": "./lib/index.browser.d.ts"
},
"default": {
"require": "./lib/cjs/index.browser.cjs",
"default": "./lib/esm/index.browser.js"
}
},
"./node": {
"types": {
"require": "./lib/index.node.d.ts",
"default": "./lib/index.node.d.ts"
},
"default": {
"require": "./lib/cjs/index.node.cjs",
"default": "./lib/esm/index.node.js"
}
}
},
"typesVersions": {
"*": {
".": [
"./lib/index.browser.d.ts"
],
"node": [
"./lib/index.node.d.ts"
]
}
},
"sideEffects": false,
"files": [
"lib/",
"dist/"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/b4rtaz/mini-canvas-editor.git"
},
"author": {
"name": "N4NO",
"url": "https://n4no.com/"
},
"homepage": "https://n4no.com/",
"scripts": {
"prepare": "cp ../LICENSE LICENSE",
"clean": "rm -rf lib && rm -rf node_modules/.cache/rollup-plugin-typescript2",
"build": "pnpm clean && rollup -c",
"start": "pnpm clean && rollup -c --watch",
"eslint": "eslint ./src --ext .ts",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src"
},
"dependencies": {
"fabric": "6.0.0-beta14"
},
"devDependencies": {
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-replace": "^5.0.4",
"prettier": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0"
},
"keywords": [
"canvas",
"editor",
"image",
"image editor",
"photo editor",
"photo",
"javascript image editor",
"paint",
"js paint",
"image crop",
"image resize",
"inpainting"
]
}