-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.11 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.11 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
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
79
80
{
"name": "akvj",
"version": "0.0.0",
"description": "Real-time VJ application using Web MIDI API and HTML5 Canvas. Built with Vite, vanilla JavaScript, deployable anywhere.",
"keywords": [
"vj",
"video-jockey",
"midi",
"web-midi",
"canvas",
"visuals",
"live-performance",
"pixel-art",
"sprite-animation",
"real-time",
"music-visualization"
],
"main": "main.js",
"type": "module",
"private": true,
"scripts": {
"dev": "concurrently -n vite,anim -c blue,green \"vite\" \"npm run animations:watch\"",
"animations": "node scripts/animations",
"animations:watch": "node scripts/animations --watch",
"animations:clean": "node scripts/animations --clean",
"animations:new": "node scripts/animations/new.js",
"animations:spritesheet": "node scripts/animations/spritesheet.js",
"build": "vite build --emptyOutDir",
"build:full": "npm run animations && vite build --emptyOutDir",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:stylelint": "stylelint \"**/*.css\" --fix",
"format:prettier": "prettier --write .",
"fix": "npx npm-check-updates -u && npm install && npm audit fix --force && npm prune && npm install && npm update",
"test": "vitest run",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/KristofferKarlAxelEkstrand/AKVJ"
},
"author": {
"name": "Kristoffer Ekstrand",
"email": "hej@kristofferekstrand.se",
"url": "https://kristofferekstrand.se"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"chokidar": "^5.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"prettier": "3.7.4",
"sharp": "^0.34.5",
"stylelint": "^16.26.1",
"stylelint-config-recommended": "^17.0.0",
"stylelint-order": "^7.0.0",
"vite": "^7.2.7",
"vitest": "^4.0.15"
}
}