-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.22 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.22 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
81
82
83
84
85
86
87
{
"name": "@gyeonghokim/fisheye.js",
"private": false,
"version": "2.1.0",
"description": "Modern fisheye dewarping library for the web using WebGPU",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"type-check": "tsc --noEmit",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "npm run build && playwright test",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:ui": "vitest --ui",
"prepare": "husky",
"release": "semantic-release",
"example:dev": "npm run dev --prefix example",
"example:build": "npm run build --prefix example"
},
"keywords": [
"fisheye",
"dewarping",
"webgpu",
"typegpu",
"video",
"videoframe",
"webcodecs"
],
"author": "GyeongHo Kim",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GyeongHoKim/fisheye.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public",
"provenance": true
},
"bugs": {
"url": "https://github.com/GyeongHoKim/fisheye.js/issues"
},
"homepage": "https://github.com/GyeongHoKim/fisheye.js#readme",
"dependencies": {
"typegpu": "^0.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@playwright/test": "^1.58.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.0.10",
"@vitest/ui": "^4.0.18",
"@webgpu/types": "^0.1.69",
"happy-dom": "^20.4.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3",
"unplugin-typegpu": "^0.9.0",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.3.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24.0.0"
}
}