-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"name": "vision-language-runtime",
"version": "1.0.0",
"description": "Vision-language inference runtime powered by WebGPU",
"type": "module",
"scripts": {
"dev": "http-server src -p 8000 -o -c-1",
"start": "http-server src -p 8000 -c-1",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node tests/caption-normalizer.test.js && node tests/dom-helpers.test.js && node tests/state-machine.test.js",
"test:e2e": "playwright test",
"test:e2e:chromium": "playwright test --project=chromium --reporter=line",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"lint": "eslint src/js/**/*.js",
"format": "prettier --write \"src/js/**/*.js\" \"tests/**/*.js\"",
"format:check": "prettier --check \"src/js/**/*.js\" \"tests/**/*.js\"",
"type-check": "tsc --noEmit"
},
"keywords": [
"webgpu",
"vision-language",
"ai",
"transformers",
"vlm"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^25.4.0",
"eslint": "^8.57.1",
"http-server": "^14.1.1",
"prettier": "^3.0.0",
"sharp": "^0.34.5",
"typescript": "^5.3.3"
}
}