-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "@robotical/ricjs",
"version": "1.16.7",
"description": "Javascript/TS library for Robotical RIC",
"author": "Rob Dobson <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/robotical/ricjs.git"
},
"license": "MIT",
"keywords": [
"RIC",
"Robotical",
"robotics"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build": "tsc -p tsconfig.json",
"build-all": "npm run clean && npm run build"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/semver": "^7.3.9",
"@types/web-bluetooth": "^0.0.14",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/w3c-web-serial": "^1.0.3",
"axios": "^0.26.0",
"buffer": "^6.0.3",
"isomorphic-ws": "^4.0.1",
"semver": "^7.3.5"
}
}