-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.64 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
{
"name": "@visbot/gulp-avs",
"version": "0.6.1",
"description": "Gulp plugin to convert Winamp AVS presets into Webvs JSON",
"author": "Jan T. Sott",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/visbot/gulp-avs.git"
},
"files": [
"dist/",
"LICENSE",
"package.json",
"README.MD"
],
"engines": {
"gulp": ">=2.3.0",
"node": ">=18"
},
"keywords": [
"gulpplugin",
"avs",
"webvs",
"webvsc",
"converter",
"winamp"
],
"dependencies": {
"plugin-error": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.18.8",
"@types/vinyl": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@visbot/webvsc": "3.0.0-alpha.5",
"eslint": "^8.57.0",
"eslint-plugin-json": "^3.1.0",
"gulp": "^4.0.2",
"husky": "^9.0.11",
"knip": "^3.8.4",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"npm-run-all2": "^6.1.2",
"should": "^13.2.3",
"stream-assert": "^2.0.3",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vinyl": "^3.0.0"
},
"peerDependencies": {
"@visbot/webvsc": "3.0.0-alpha.5"
},
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch",
"lint:deps": "knip --production",
"lint:ts": "eslint ./src/**/*.ts --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"prepack": "npm run build",
"prepare": "husky install",
"test": "mocha tests"
},
"lint-staged": {
"*.(ts|json)": "eslint --cache --fix"
}
}