@aics/agave-webclient 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@aics/agave-webclient",
3
+ "version": "1.6.1",
4
+ "description": "client library for using agave as remote rendering server",
5
+ "main": "es/index.js",
6
+ "module": "es/index.js",
7
+ "files": [
8
+ "es",
9
+ "package.json"
10
+ ],
11
+ "publishConfig": {
12
+ "registry": "https://registry.npmjs.org/",
13
+ "access": "public"
14
+ },
15
+ "scripts": {
16
+ "prepare": "npm run build",
17
+ "build": "npm run transpileES && npm run build-types",
18
+ "build-types": "tsc -p tsconfig.types.json",
19
+ "clean": "rimraf es/",
20
+ "format": "prettier --write src/**/*.ts",
21
+ "gh-build": "webpack --config webpack.dev.js",
22
+ "dev": "webpack serve --config webpack.dev.js",
23
+ "start": "webpack serve --config webpack.dev.js",
24
+ "lint": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore --ext .jsx --ext .js --ext .ts ./src",
25
+ "test": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' mocha --require ts-node/register src/**/test/*.ts",
26
+ "transpileES": "babel src --out-dir es --extensions .js,.ts --ignore **/test/*.ts",
27
+ "typeCheck": "tsc -p tsconfig.json --noEmit"
28
+ },
29
+ "author": "",
30
+ "license": "ISC",
31
+ "devDependencies": {
32
+ "@babel/cli": "^7.21.5",
33
+ "@babel/core": "^7.22.1",
34
+ "@babel/plugin-transform-runtime": "^7.22.4",
35
+ "@babel/preset-env": "^7.22.4",
36
+ "@babel/preset-typescript": "^7.21.5",
37
+ "@babel/register": "^7.21.0",
38
+ "@types/chai": "^4.3.5",
39
+ "@types/dat.gui": "^0.7.10",
40
+ "@types/mocha": "^10.0.1",
41
+ "@types/three": "^0.152.1",
42
+ "@typescript-eslint/eslint-plugin": "^5.60.1",
43
+ "@typescript-eslint/parser": "^5.60.1",
44
+ "acorn": "^8.8.2",
45
+ "babel-loader": "^9.1.2",
46
+ "chai": "^4.3.7",
47
+ "clean-webpack-plugin": "^4.0.0",
48
+ "copy-webpack-plugin": "^11.0.0",
49
+ "cross-env": "^7.0.3",
50
+ "dat.gui": "^0.7.9",
51
+ "eslint": "^8.43.0",
52
+ "eslint-config-prettier": "^8.8.0",
53
+ "html-webpack-plugin": "^5.5.1",
54
+ "mocha": "10.2.0",
55
+ "prettier": "^2.8.8",
56
+ "rimraf": "^5.0.1",
57
+ "three": "^0.153.0",
58
+ "ts-node": "^10.9.1",
59
+ "typescript": "^5.1.3",
60
+ "webpack": "^5.85.1",
61
+ "webpack-cli": "^5.1.3",
62
+ "webpack-dev-server": "^4.15.0"
63
+ }
64
+ }