-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "vibe-haptic",
"version": "1.1.0",
"author": "Jeon Suyeol",
"license": "MIT",
"type": "module",
"description": "Haptic feedback from your coding agents",
"main": "./dist/index.js",
"files": [
"dist",
"native/*.node",
"native/index.js",
"native/index.d.ts",
".claude-plugin",
"hooks"
],
"scripts": {
"clean": "rm -rf dist native/target native/*.node",
"build": "bun run build:native && bun build.ts",
"build:native": "bun run --cwd native build",
"dev:claude": "bun run build && claude --plugin-dir ./",
"dev:opencode": "bun run build && OPENCODE_CONFIG_CONTENT=\"{\\\"plugin\\\": [\\\"file://$PWD/dist/index.js\\\"]}\" opencode",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"play": "bun run src/bin/haptic.ts",
"prepublishOnly": "bun run build"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@napi-rs/cli": "^2.16",
"@types/bun": "latest",
"typescript": "^5.3.0"
}
}