-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 863 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "cubes",
"version": "1.0.0",
"description": "A WebGL2 visualization that renders a circular HSV color wheel made of rotated 3D cubes. Each cube has six colored faces (RGBCMY) and is rotated so the visible face mixture approximates a target color derived from its position in the wheel.",
"main": "animated.js",
"type": "module",
"scripts": {
"lint": "eslint apps/*.js lib/*.js",
"lint:fix": "eslint --fix apps/*.js lib/*.js",
"format": "prettier --write apps/*.js lib/*.js apps/*.html lib/*.css index.html",
"check": "eslint apps/*.js lib/*.js && prettier --check apps/*.js lib/*.js apps/*.html lib/*.css index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1"
}
}