forked from MONOGRID/gainmap-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
160 lines (160 loc) · 5.43 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "@monogrid/gainmap-js",
"version": "3.0.5",
"description": "A Javascript (TypeScript) Port of Adobe Gainmap Technology for storing HDR Images using an SDR Image + a gain map",
"homepage": "https://github.com/MONOGRID/gainmap-js#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/MONOGRID/gainmap-js.git"
},
"keywords": [
"hdr",
"gain map",
"gainmap",
"three",
"threejs"
],
"author": "MONOGRID <rnd@monogrid.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MONOGRID/gainmap-js/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"main": "dist/decode.umd.cjs",
"module": "dist/decode.js",
"types": "dist/decode.d.ts",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/decode.d.ts",
"import": "./dist/decode.js",
"default": "./dist/decode.umd.cjs"
},
"./encode": {
"types": "./dist/encode.d.ts",
"import": "./dist/encode.js",
"default": "./dist/encode.umd.cjs"
},
"./libultrahdr": {
"types": "./dist/libultrahdr.d.ts",
"import": "./dist/libultrahdr.js",
"default": "./dist/libultrahdr.umd.cjs"
},
"./worker": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js",
"default": "./dist/worker.umd.cjs"
},
"./worker-interface": {
"types": "./dist/worker-interface.d.ts",
"import": "./dist/worker-interface.js",
"default": "./dist/worker-interface.umd.cjs"
}
},
"typesVersions": {
"*": {
".": [
"./dist/decode.d.ts"
],
"encode": [
"./dist/encode.d.ts"
],
"libultrahdr": [
"./dist/libultrahdr.d.ts"
],
"worker": [
"./dist/worker.d.ts"
],
"worker-interface": [
"./dist/worker-interface.d.ts"
]
}
},
"scripts": {
"build": "rollup -c",
"dev": "concurrently -n rollup,servez -c magenta,green \"rollup -c -w\" \"servez\"",
"start": "concurrently -n rollup,servez -c magenta,green \"rollup -c -w\" \"servez\"",
"test": "nyc --reporter=text --reporter=lcov playwright test",
"test:startserver": "rollup -c && servez",
"test:docker": "docker run --rm --network host -v $(pwd):/work -w /work -it -u $(id -u ${USER}):$(id -g ${USER}) mcr.microsoft.com/playwright:v1.42.1-jammy /bin/bash",
"test:codegen": "playwright codegen http://localhost:8080",
"prepack": "npm run build",
"check": "concurrently -c auto npm:check:*",
"check:typecheck-src": "tsc -p src",
"check:eslint-src": "eslint \"src/**/*.ts\"",
"check:typecheck-examples": "tsc -p examples",
"check:eslint-examples": "eslint \"examples/**/*.{ts,html}\"",
"check:typecheck-tests": "tsc -p tests",
"check:eslint-tests": "eslint \"tests/**/*.ts\"",
"ci:check": "concurrently npm:ci:check:*",
"ci:check:typecheck-src": "tsc --pretty false -p src > reports/typecheck.log",
"ci:check:eslint-src": "eslint --format json --output-file reports/eslint-src.json \"src/**/*.ts\"",
"ci:check:typecheck-examples": "tsc --pretty false -p examples > reports/typecheck-examples.log",
"ci:check:eslint-examples": "eslint --format json --output-file reports/eslint-examples.json \"examples/**/*.{ts,html}\"",
"ci:check:typecheck-tests": "tsc --pretty false -p tests > reports/typecheck-tests.log",
"ci:check:eslint-tests": "eslint --format json --output-file reports/eslint-tests.json \"tests/**/*.ts\""
},
"peerDependencies": {
"three": ">= 0.159.0"
},
"dependencies": {
"promise-worker-transferable": "^1.0.4"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "github:semantic-release/git",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/node": "^20.12.2",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"concurrently": "^8.2.2",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"nyc": "^15.1.0",
"rollup": "^4.13.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-istanbul": "^5.0.0",
"rollup-plugin-license": "^3.3.1",
"semantic-release": "^23.0.6",
"servez": "^2.1.4",
"sharp": "^0.33.3",
"three": "^0.163.0",
"typedoc": "^0.25.12",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.3"
},
"browserslist": [
"> 1%, not dead, not ie 11, not op_mini all"
]
}