-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
83 lines (83 loc) · 3.18 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
{
"name": "@vircadia/web-sdk",
"version": "2024.1.0",
"productName": "Vircadia Web SDK",
"description": "Vircadia Web SDK for virtual worlds.",
"author": "DigiSomni LLC | Vircadia Contributors",
"homepage": "https://github.com/vircadia/vircadia-web-sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/vircadia/vircadia-web-sdk.git"
},
"license": "Apache-2.0",
"main": "dist/Vircadia.js",
"types": "dist/src/Vircadia.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all -s \"create-version\" \"build-wp-dev\"",
"build-prod": "npm-run-all -s \"clean-dist\" \"create-version\" \"build-wp-prod\"",
"build-wp-prod": "webpack --mode production",
"build-wp-dev": "webpack --mode development",
"watch": "npm-run-all -s \"create-version\" \"watch-wp-dev\"",
"watch-prod": "npm-run-all -s \"clean-dist\" \"create-version\" \"watch-wp-prod\"",
"watch-wp-prod": "webpack --watch --mode production",
"watch-wp-dev": "webpack --watch --mode development",
"create-version": "node build_scripts/createVersion.js",
"clean-dist": "node build_scripts/cleanDist.js",
"clean": "tsc --build --clean",
"lint": "eslint .",
"lint-path": "eslint",
"test": "jest",
"test-watch": "jest --watch",
"test-debug": "jest --detectOpenHandles",
"sdkdoc": "rimraf ./docs/sdk && rimraf ./docs/build && tsc --resolveJsonModule --project tsconfig.jsdoc.json && jsdoc ./jsdoc/sdk-mainpage.md ./docs/build --recurse --configure ./jsdoc/config-sdk.json --destination docs/sdk",
"devdoc": "rimraf ./docs/dev && rimraf ./docs/build && tsc --resolveJsonModule --project tsconfig.jsdoc.json && jsdoc ./jsdoc/dev-mainpage.md ./docs/build --recurse --configure ./jsdoc/config-dev.json --destination docs/dev",
"update-contributors": "git-authors-cli"
},
"devDependencies": {
"@koush/wrtc": "^0.5.3",
"@types/crypto-js": "^4.0.2",
"@types/jest": "^27.5.2",
"@types/pako": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.30.0",
"eslint-plugin-jest": "^24.7.0",
"fs-extra": "^10.0.0",
"git-authors-cli": "^1.0.44",
"jest": "^27.3.1",
"jsdoc": "^3.6.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "<4.5.0",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"worker-url": "^1.1.0"
},
"dependencies": {
"axios": "1.2.2",
"core-js": "^3.19.1",
"crypto-js": "^4.1.1",
"form-data": "^4.0.0",
"pako": "^2.0.4",
"regenerator-runtime": "^0.13.7"
},
"contributors": [
"David Rowe <[email protected]>",
"Julien Merzoug <[email protected]>",
"Kalila <[email protected]>",
"namark <[email protected]>",
"Robert Adams <[email protected]>",
"Robert <[email protected]>",
"Kalila L <[email protected]>",
"Julien <[email protected]>",
"Giga <[email protected]>",
"Dale Glass <[email protected]>",
"Martin Allerton <[email protected]>"
]
}