-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "@wandelbots/wandelbots-js",
"type": "module",
"version": "0.0.0-semantically-released",
"description": "Official JS client for the Wandelbots API",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev:pack": "nodemon -w \".\" -e ts -i *.tgz -i dist -x \"npm run build && npm pack\"",
"tsc": "tsc --pretty --noEmit",
"build": "tsup src/index.ts --format esm,cjs --clean --sourcemap --env.NOVA_AUTH0_DEV_CLIENT_ID=$NOVA_AUTH0_DEV_CLIENT_ID --env.NOVA_AUTH0_STG_CLIENT_ID=$NOVA_AUTH0_STG_CLIENT_ID --env.NOVA_AUTH0_PROD_CLIENT_ID=$NOVA_AUTH0_PROD_CLIENT_ID && tsc --declaration --emitDeclarationOnly",
"test": "npm run build && vitest run",
"prepare": "husky || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wandelbotsgmbh/wandelbots-js.git"
},
"keywords": [
"wandelbots",
"api"
],
"author": "Wandelbots",
"license": "Apache-2.0",
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"husky": "^9.1.7",
"nodemon": "^3.1.4",
"prettier-eslint": "^16.3.0",
"semantic-release": "^24.0.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"vitest": "^2.0.2",
"ws": "^8.18.0"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.3",
"@types/three": "^0.167.1",
"@wandelbots/wandelbots-api-client": "^24.8.1",
"axios": "^1.7.2",
"mobx": "^6.12.4",
"path-to-regexp": "^7.1.0",
"reconnecting-websocket": "^4.4.0",
"three": "^0.167.1",
"url-join": "^5.0.0"
}
}