-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "instacam",
"version": "1.18.0",
"description": "Instant canvas video",
"source": "src/instacam.js",
"main": "dist/instacam.umd.js",
"browser": "dist/instacam.umd.js",
"unpkg": "dist/instacam.umd.js",
"scripts": {
"build": "webpack --config webpack.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xavierfoucrier/instacam.git"
},
"files": [
"dist"
],
"keywords": [
"webrtc",
"camera",
"microphone",
"webcam",
"canvas",
"video",
"filters"
],
"author": {
"name": "Xavier Foucrier",
"email": "[email protected]",
"url": "https://xavierfoucrier.dev",
"github": "@xavierfoucrier"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/xavierfoucrier/instacam/issues"
},
"homepage": "https://instacam.js.org",
"engines": {
"node": "^20",
"npm": "^9"
},
"devDependencies": {
"eslint": "^8.46.0",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}