-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "@slimevr/firmware-protocol",
"version": "0.6.5",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/dts/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/dts/index.d.ts",
"default": "./dist/esm/index.js"
},
"license": "(MIT OR Apache-2.0)",
"author": {
"name": "DevMiner",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/SlimeVR/slimevr-node.git/tree/master/packages/firmware-protocol"
},
"bugs": {
"url": "https://github.com/SlimeVR/slimevr-node/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepack": "pnpm build",
"dev": "pnpm build:esm -- -w",
"clean": "rimraf dist"
},
"dependencies": {
"@slimevr/common": "workspace:*"
},
"devDependencies": {
"@slimevr/tsconfig": "workspace:*",
"@types/node": "^18.17.2"
}
}