-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "hdr-canvas",
"version": "0.0.10",
"description": "HDR capable HTML canvas",
"main": "dist/hdr-canvas.js",
"files": [
"dist/hdr-canvas.d.ts",
"dist/hdr-canvas.js",
"dist/hdr-canvas.js.map",
"dist/hdr-canvas.min.js",
"dist/hdr-canvas.min.js.map",
"dist/hdr-canvas.cjs",
"dist/hdr-canvas.cjs.map",
"three",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . -c eslint.config.mjs --report-unused-disable-directives",
"tsc": "tsc",
"build": "rimraf ./dist ./build && tsc && rollup --config",
"clean": "rimraf ./dist ./build",
"format": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmahnke/hdr-canvas.git"
},
"keywords": [
"HDR",
"canvas",
"3D",
"Three.js"
],
"author": "Christian Mahnke",
"license": "MIT",
"bugs": {
"url": "https://github.com/cmahnke/hdr-canvas/issues"
},
"homepage": "https://github.com/cmahnke/hdr-canvas#readme",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"three": "^0.170.0",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
},
"dependencies": {
"colorjs.io": "^0.5.2"
}
}