-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 917 Bytes
/
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
{
"name": "screen-recording",
"version": "1.0.5",
"description": "Fe recording",
"main": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.ts",
"type": "commonjs",
"author": "Djordje Mikic",
"license": "MIT",
"repository": "https://github.com/DjordjeMikic/screen-recording.git",
"scripts": {
"build": "yarn tsc -w",
"dev-pack": "webpack-dev-server --mode development",
"build-pack": "webpack --mode production"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
],
"node": "6.10"
},
"files": [
"/dist"
]
}