-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "@robdobsn/raftjs",
"version": "1.5.9",
"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/node": "^20.14.0",
"@types/web-bluetooth": "^0.0.20",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"eslint": "^9.4.0",
"react-native-ble-plx": "^3.2.0",
"typescript": "^5.4.5",
"rimraf": "^6.0.1",
"@types/text-encoding": "^0.0.39"
},
"dependencies": {
"text-encoding": "^0.7.0",
"isomorphic-ws": "^5.0.0",
"tslib": "^2.6.2"
},
"peerDependencies": {
"react-native-ble-plx": "^3.2.1"
}
}