-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.91 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
72
73
74
75
76
77
{
"name": "hdr-canvas",
"version": "0.0.13",
"description": "HDR capable HTML canvas",
"main": "dist/hdr-canvas.cjs",
"module": "dist/hdr-canvas.js",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/hdr-canvas.js",
"default": "./dist/hdr-canvas.js"
},
"./three/*": "./three/*"
},
"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.umd.js",
"dist/hdr-canvas.umd.js.map",
"dist/index.d.ts",
"dist/@types",
"three",
"src",
"rollup.config.mjs",
"tsconfig.json",
"README",
"LICENCE"
],
"types": "dist/index.d.ts",
"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.15.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.15.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.27.3",
"rollup-plugin-dts": "^6.1.1",
"three": "^0.170.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"colorjs.io": "^0.5.2"
}
}