-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.99 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
75
76
77
78
79
80
{
"name": "imgstry",
"version": "1.0.0-alpha10",
"description": "A JavaScript image editing module.",
"main": "dist/imgstry.umd.js",
"module": "dist/imgstry.mjs",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/imgstry.mjs",
"require": "./dist/imgstry.umd.js",
"default": "./dist/imgstry.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"declarations",
"README.md",
"LICENSE"
],
"scripts": {
"start": "vite",
"build": "vite build && npm run build:types",
"build:types": "tsc -p tsconfig.types.json",
"check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest --run",
"coverage": "vitest --run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"verify": "npm run lint && npm run check && npm run test:run && npm run build"
},
"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": "^3.2.3",
"rxjs": "7.8.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.9.3",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.5.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^63.0.2",
"eslint-plugin-sonarjs": "^4.0.3",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=22"
}
}