-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.64 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
{
"name": "@unbg/browser-sdk",
"version": "1.0.0",
"description": "Browser-first background removal SDK with one-liner and client APIs.",
"license": "MIT",
"type": "module",
"author": "UNBG (https://github.com/unbgio)",
"repository": {
"type": "git",
"url": "git+https://github.com/unbgio/browser-sdk.git"
},
"homepage": "https://github.com/unbgio/browser-sdk#readme",
"bugs": {
"url": "https://github.com/unbgio/browser-sdk/issues"
},
"keywords": [
"background-removal",
"image-processing",
"webgpu",
"browser",
"transformers-js"
],
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist coverage",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:browser": "playwright test",
"verify:release": "npm run lint && npm run typecheck && npm run test && npm run build && npm pack --dry-run",
"prepublishOnly": "npm run verify:release"
},
"dependencies": {
"@huggingface/transformers": "3.8.1"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@types/node": "25.2.3",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"eslint": "9.39.2",
"happy-dom": "20.6.1",
"rimraf": "6.1.2",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.18",
"@vitest/coverage-v8": "4.0.18"
}
}