-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.82 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.82 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
{
"name": "@zendrex/buttplug.js",
"version": "0.1.1",
"description": "Modern TypeScript client for the Buttplug protocol v4",
"author": "zendrex",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"workspaces": [
"./",
"docs"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./src/index.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"check": "bunx ultracite check",
"fix": "bunx ultracite fix",
"check-types": "tsc -b",
"docs": "cd docs && bun run dev",
"docs:build": "cd docs && bun run build",
"changeset": "changeset",
"version": "changeset version",
"prepare": "husky",
"clean": "git clean -xdf dist node_modules"
},
"dependencies": {
"emittery": "^1.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.1",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "latest",
"bun-types": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsup": "^8.5.1",
"ultracite": "^7.2.3"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bunx ultracite fix"
]
},
"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"
]
}