forked from Loghorn/ant-plus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "web-ant-plus",
"version": "2.1.0",
"description": "A package for ANT+ on Web browsers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"example": "example"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"check": "biome check ./",
"format": "biome check --fix ./",
"lint": "biome lint ./",
"test": "exit 0",
"dev": "vite ./example",
"preview": "vite preview ./example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8beeeaaat/web-ant-plus.git"
},
"keywords": [
"ANT+",
"ant-plus",
"ant plus",
"Garmin"
],
"author": "8beeeaaat",
"license": "MIT",
"bugs": {
"url": "https://github.com/8beeeaaat/web-ant-plus/issues"
},
"homepage": "https://github.com/8beeeaaat/web-ant-plus#readme",
"workspaces": [
"example"
],
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/w3c-web-usb": "^1.0.10",
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"vite": "^5.4.8"
}
}