-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
{
"name": "@imgly/plugin-background-removal-web",
"version": "1.0.2",
"description": "Background Removal plugin for the CE.SDK editor",
"keywords": [
"CE.SDK",
"plugin",
"background-removal",
"client-side",
"data-privacy",
"image-segmentation",
"image-matting",
"onnx"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imgly/plugin-background-removal-web.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "IMG.LY GmbH",
"email": "support@img.ly",
"url": "https://img.ly"
},
"bugs": {
"email": "support@img.ly"
},
"source": "./src/index.ts",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"homepage": "https://img.ly/products/creative-sdk",
"files": [
"LICENSE.md",
"README.md",
"CHANGELOG.md",
"dist/",
"bin/"
],
"scripts": {
"start": "npm run watch",
"clean": "npx rimraf dist",
"purge": "npx rimraf node_modules",
"build": "npm run clean && node scripts/build.mjs",
"dev": "node scripts/watch.mjs",
"dev:wait": "npx wait-on ./dist/index.mjs ./dist/index.d.ts --timeout 30000",
"dev:types": "tsc --emitDeclarationOnly --watch --preserveWatchOutput",
"publish:latest": "npm run build && npm publish --tag latest --access public",
"publish:next": "npm run build && npm publish --tag next --access public",
"check:all": "concurrently -n lint,type,pretty \"yarn check:lint\" \"yarn check:types\" \"yarn check:pretty\"",
"check:lint": "eslint --max-warnings 0 './src/**/*.{ts,tsx}'",
"check:pretty": "prettier --list-different './src/**/*.{ts,tsx}'",
"check:types": "tsc --noEmit",
"types:create": "tsc --emitDeclarationOnly"
},
"devDependencies": {
"@imgly/plugin-utils": "*",
"@types/lodash-es": "^4.17.12",
"@types/ndarray": "^1.0.14",
"chalk": "^5.3.0",
"concurrently": "^8.2.2",
"esbuild": "^0.19.11",
"eslint": "^8.51.0",
"lodash-es": "^4.17.21",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@cesdk/cesdk-js": "^1.32.0"
},
"dependencies": {
"@imgly/background-removal": "^1.5.7"
}
}