-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
35 lines (35 loc) · 998 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
{
"name": "browsertrix-behaviors",
"version": "0.6.6",
"main": "index.js",
"author": "Webrecorder Software",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@webpack-cli/init": "^1.1.3",
"eslint": "^7.22.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"build": "webpack --mode production",
"build-dev": "webpack --mode development",
"build-dev-copy": "webpack --mode development && cat ./dist/behaviors.js | pbcopy",
"watch": "webpack watch --mode production",
"watch-dev": "webpack watch --mode development",
"lint": "eslint ./src/**/*.ts webpack.config.js"
},
"description": "Browsertrix Behaviors",
"files": [
"src",
"index.js",
"dist/"
],
"dependencies": {
"query-selector-shadow-dom": "^1.0.1"
}
}