-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.17 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
{
"name": "@lumen5/framefusion",
"version": "1.0.8",
"type": "module",
"scripts": {
"docs": "typedoc framefusion.ts",
"tsc": "tsc",
"build": "tsc && vite build && tsc --declaration",
"prepare": "yarn run build",
"preview": "vite preview",
"test-once": "vitest run",
"test": "vitest",
"test:debug": "vitest --inspect-brk --single-thread",
"test-ui": "vitest --ui",
"vite-node": "vite-node",
"dev": " yarn run build && node dist/framefusion.es.js",
"debug": " yarn run build && node --enable-source-maps --inspect-brk dist/framefusion.es.js",
"lint": "eslint ./ --ext .js,.ts",
"test-in-docker": "docker build -t framefusion-test-image -f ./docker-images/ci.Dockerfile . && docker run -it framefusion-test-image"
},
"dependencies": {
"@lumen5/beamcoder": "^0.0.3",
"fs-extra": "^11.1.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/http-server": "^0.12.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@types/sinon": "^10.0.13",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitest/ui": "^0.29.8",
"canvas": "^2.9.1",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vitest": "^0.1.4",
"express": "^4.18.2",
"http-server": "^14.1.1",
"jest-image-snapshot": "^6.1.0",
"rimraf": "^4.4.1",
"rollup-plugin-auto-external": "^2.0.0",
"sinon": "^15.0.3",
"tsconfig-paths": "^4.1.2",
"typedoc": "^0.24.1",
"typescript": "^4.9.5",
"vite": "^4.1.0",
"vite-node": "^0.29.2",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.29.2"
},
"description": "Video library",
"main": "./dist/framefusion.js",
"exports": {
".": {
"require": "./dist/framefusion.cjs",
"import": "./dist/framefusion.es.js",
"types": "./dist/framefusion.d.ts"
}
},
"files": [
"dist/*"
]
}