-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "bencode_online",
"version": "2.0.0",
"description": "Bencode & bdecode in your browser",
"homepage": "https://github.com/Chocobo1/bencode_online",
"repository": {
"type": "git",
"url": "https://github.com/Chocobo1/bencode_online.git"
},
"scripts": {
"build": "webpack --mode production --config webpack.prod.mjs",
"lint": "eslint src/main.ts && html-validate src/*.html",
"serve": "webpack serve --mode development --open --config webpack.dev.mjs"
},
"author": "Chocobo1",
"license": "MIT",
"dependencies": {
"ace-builds": "^1.36.2",
"buffer": "^6.0.3",
"clipboard": "^2.0.11",
"file-saver": "^2.0.5",
"keymaster": "^1.6.2",
"lz-string": "^1.5.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/file-saver": "^2.0.7",
"@types/keymaster": "^1.6.33",
"@types/node": "^22.7.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.11.1",
"html-validate": "^8.24.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
}
}