-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "imgstry",
"version": "1.0.0-alpha10",
"description": "A JavaScript image editing module.",
"main": "dist/imgstry.umd.js",
"module": "dist/imgstry.mjs",
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"coverage": "vitest --run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visual-cortex/imgstry.git"
},
"keywords": [
"image",
"editing",
"image-editing",
"canvas",
"filters",
"instagram",
"effects"
],
"author": "V",
"license": "MIT",
"bugs": {
"url": "https://github.com/visual-cortex/imgstry/issues"
},
"homepage": "https://github.com/visual-cortex/imgstry#readme",
"dependencies": {
"canvas": "2.11.2",
"rxjs": "7.8.1"
},
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitest/coverage-v8": "^0.34.1",
"eslint": "^8.47.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-sonarjs": "^0.20.0",
"jsdom": "^22.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1"
},
"engines": {
"node": ">=18.17.1",
"npm": ">=9.6.0"
}
}