-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 1.81 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
{
"name": "@visbot/webvsc",
"version": "3.0.0-alpha",
"description": "A library to convert Winamp AVS presets into Webvs JSON",
"license": "MIT",
"type": "module",
"exports": "./dist/webvsc.mjs",
"engines": {
"node": ">=14.16"
},
"files": [
"dist/",
"types/",
"LICENSE",
"README.md"
],
"directories": {
"doc": "doc",
"test": "test"
},
"contributors": [
"grandchild",
"idleberg"
],
"homepage": "https://github.com/grandchild/AVS-File-Decoder#readme",
"repository": {
"type": "git",
"url": "https://github.com/grandchild/AVS-File-Decoder.git"
},
"bugs": {
"url": "https://github.com/grandchild/AVS-File-Decoder/issues"
},
"keywords": [
"avs",
"webvs",
"webvsc",
"cli",
"converter",
"winamp"
],
"scripts": {
"build": "esbuild src/main.ts --bundle --outfile=dist/webvsc.mjs --format=esm",
"clean": "rimraf ./dist",
"dev": "npm run start",
"lint:code": "eslint ./src --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"prepack": "npm run build",
"prepare": "husky install",
"start": "esbuild src/main.ts --bundle --outfile=dist/webvsc.mjs --format=esm --watch",
"test": "uvu test --ignore _h.mjs"
},
"dependencies": {
"log-symbols": "^5.1.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"esbuild": "^0.16.14",
"eslint": "^8.31.0",
"globby": "^13.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"npm-run-all2": "^6.0.4",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4",
"uvu": "^0.5.6"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"volta": {
"node": "18.13.0",
"npm": "8.19.3 "
}
}