-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "@visbot/vite-plugin-avs",
"version": "1.0.1",
"description": "A Vite plugin for your AVS presets",
"license": "MIT",
"author": "idleberg",
"repository": {
"type": "git",
"url": "https://github.com/visbot/vite-plugin-avs"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"LICENCE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch",
"lint": "eslint index.ts --ignore-path .gitignore",
"prepack": "npm run build",
"prepare": "husky install",
"test": "cd tests && vite build"
},
"keywords": [
"vite-plugin",
"avs",
"webvs",
"winamp"
],
"dependencies": {
"@visbot/webvsc": "3.0.0-alpha.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^4.5.1"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}