-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "@khopha/img-player",
"version": "0.1.2",
"description": "A lightweight JavaScript library that renders image sequences with video-like controls.",
"repository": "khopha/img-player",
"license": "MIT",
"type": "module",
"main": "./dist/img-player.umd.cjs",
"module": "./dist/img-player.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/img-player.js",
"require": "./dist/img-player.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ./src",
"test": "vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.14.10",
"@vitest/coverage-v8": "^2.0.2",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"jsdom": "^24.1.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.0-alpha.41",
"vite": "^5.3.1",
"vite-plugin-dts": "^4.0.0-beta.1",
"vitest": "^2.0.2"
}
}