-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.42 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@zendrex/buttplug.js",
"version": "0.4.0",
"description": "Modern TypeScript client for the Buttplug protocol v4",
"author": "zendrex",
"license": "MIT",
"type": "module",
"workspaces": [
"./",
"docs"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./patterns": {
"import": {
"types": "./dist/patterns/index.d.mts",
"default": "./dist/patterns/index.mjs"
},
"require": {
"types": "./dist/patterns/index.d.cts",
"default": "./dist/patterns/index.cjs"
}
},
"./wasm": {
"import": {
"types": "./dist/wasm/index.d.mts",
"default": "./dist/wasm/index.mjs"
},
"require": {
"types": "./dist/wasm/index.d.cts",
"default": "./dist/wasm/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"check": "bunx ultracite check",
"fix": "bunx ultracite fix",
"update": "bun update -r -i",
"clean": "git clean -xdf dist node_modules",
"check-types": "tsc -b tsconfig.json example/wasm/tsconfig.json",
"docs": "cd docs && bun run dev",
"docs:build": "cd docs && bun run build",
"example:wasm": "vite serve example/wasm",
"changeset": "changeset",
"version": "changeset version",
"prepare": "lefthook install"
},
"dependencies": {
"emittery": "^2.0.0",
"zod": "^4.4.3"
},
"peerDependencies": {
"buttplug-wasm-blob": "^3.0.0"
},
"peerDependenciesMeta": {
"buttplug-wasm-blob": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/bun": "^1.3.14",
"bun-types": "^1.3.14",
"buttplug-wasm-blob": "^3.0.0",
"lefthook": "^2.1.8",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"ultracite": "^7.7.0",
"vite": "^8.0.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zendrex/buttplug.js.git"
},
"bugs": {
"url": "https://github.com/Zendrex/buttplug.js/issues"
},
"homepage": "https://github.com/Zendrex/buttplug.js#readme",
"keywords": [
"buttplug",
"intiface",
"haptics",
"teledildonics",
"bluetooth",
"sex-tech",
"iot",
"websocket",
"typescript"
]
}