-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"name": "encodeher",
"version": "1.0.0-alpha",
"description": "The v1 weebify encoder",
"main": "src/index.ts",
"scripts": {
"watch": "tsc-watch --onSuccess \"node --inspect ./build/index.js\"",
"build": "tsc",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node src/index.ts"
},
"keywords": [
"weebify",
"encoder"
],
"author": "Matic Babnik",
"license": "MIT",
"dependencies": {
"@types/cli-progress": "^3.11.0",
"axios": "^1.4.0",
"cli-progress": "^3.12.0",
"commander": "^10.0.1",
"mime-types": "^2.1.35",
"slugify": "^1.6.6",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.0",
"typescript": "^4.7.4"
}
}