-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@visbot/webvsc-cli",
"version": "0.9.0",
"description": "CLI tool to batch-convert Winamp AVS presets into Webvs JSON",
"license": "MIT",
"contributors": [
"idleberg",
"grandchild"
],
"homepage": "https://github.com/visbot/webvsc-cli#readme",
"type": "module",
"bin": {
"webvsc": "./webvsc.mjs"
},
"files": [
"bin",
"LICENSE",
"README.md",
"webvsc.mjs"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/visbot/webvsc-cli.git"
},
"bugs": {
"url": "https://github.com/visbot/webvsc-cli/issues"
},
"keywords": [
"avs",
"webvs",
"cli",
"converter",
"winamp"
],
"dependencies": {
"@visbot/webvsc": "3.0.0-alpha.5",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"diff": "^5.1.0",
"glob": "^10.3.10",
"leven": "^4.0.0",
"log-symbols": "^6.0.0",
"picocolors": "^1.0.0",
"pretty-bytes": "^6.1.1",
"seqalign": "^1.0.6"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-plugin-json": "^3.1.0",
"execa": "^8.0.1",
"husky": "^8.0.3",
"knip": "^3.8.4",
"npm-run-all2": "^6.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"uvu": "^0.5.6"
},
"scripts": {
"build": "tsup",
"dev": "npm run start",
"lint": "npm-run-all --parallel lint:*",
"lint:deps": "knip --production",
"lint:ts": "eslint ./src --ignore-path .gitignore",
"prepack": "npm run build",
"prepare": "husky install",
"start": "npm run build -- --watch",
"test": "node ./webvsc.mjs --help"
},
"lint-staged": {
"*.(json|ts)": "eslint --cache --fix"
}
}