forked from robdobsn/raftjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 KB
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
{
"name": "@robotical/raftjs",
"version": "2.0.10",
"description": "Javascript/TS library for Raft library",
"main": "dist/web/main.js",
"types": "dist/web/main.d.ts",
"react-native": "dist/react-native/main.js",
"author": "Rob Dobson <rob@dobson.com>",
"repository": {
"type": "git",
"url": "https://github.com/robdobsn/raftjs.git"
},
"bugs": {
"url": "https://github.com/robdobsn/raftjs/issues"
},
"license": "MIT",
"keywords": [
"Raft"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:phone": "tsc -p tsconfig.react-native.json",
"build-all": "npm run clean && npm run build && npm run build:phone",
"lint": "eslint ./src",
"clean": "rimraf dist build package",
"docs": "typedoc --entryPoints src/main.ts",
"watch-all": "tsc -p tsconfig.json --watch & tsc -p tsconfig.react-native.json --watch"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.13.11",
"@types/text-encoding": "^0.0.40",
"@types/web-bluetooth": "^0.0.21",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"eslint": "^9.23.0",
"jest": "^30.3.0",
"react-native-ble-plx": "^3.5.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.6",
"typescript": "^5.8.2"
},
"dependencies": {
"isomorphic-ws": "^5.0.0",
"tslib": "^2.8.1"
},
"peerDependencies": {
"react-native": "*",
"react-native-ble-plx": "*"
}
}