-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "@webnect/webnect",
"author": "turbocrime",
"description": "a webUSB driver for the xbox360 kinect",
"version": "0.0.5",
"type": "module",
"workspaces": [
"demo"
],
"exports": {
".": "./src/index.ts",
"./Camera": "./src/Camera/index.ts",
"./Motor": "./src/Motor/index.ts",
"./stream": "./src/stream/index.ts",
"./worker": "./src/worker/index.ts"
},
"files": [
"./dist",
"./src"
],
"scripts": {
"dev": "pnpm -C demo dev",
"build": "tsc",
"clean": "rm -rf ./dist/*",
"lint": "biome check ./src",
"format": "biome format --write src",
"prepublishOnly": "pnpm clean && pnpm lint && pnpm build"
},
"publishConfig": {
"access": "public",
"exports": {
".": "./dist/index.js",
"./Camera": "./dist/Camera/index.js",
"./Motor": "./dist/Motor/index.js",
"./stream": "./dist/stream/index.js",
"./worker": "./dist/worker/index.js"
},
"types": "./dist/index.d.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.2.2",
"@types/w3c-web-usb": "^1.0.6",
"typescript": "^5.2.2"
}
}