-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "clawdify",
"version": "1.0.0",
"description": "Comprehensive Spotify Web API skill for Clawdbot - OAuth authentication, playback control, library management, and music discovery",
"type": "module",
"main": "dist/spotify-oauth.js",
"types": "dist/spotify-oauth.d.ts",
"bin": {
"clawdify-auth": "./dist/spotify-oauth.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"test": "node --test tests/**/*.test.mjs",
"test:watch": "node --test --watch tests/**/*.test.mjs",
"lint": "eslint src scripts tests",
"format": "prettier --write \"**/*.{ts,mjs,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,mjs,md,json}\"",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"spotify",
"clawdbot",
"skill",
"api",
"music",
"playback",
"oauth",
"spotify-web-api"
],
"author": "",
"license": "MIT",
"files": [
"dist",
"scripts",
"SKILL.md",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/clawdify.git"
},
"bugs": {
"url": "https://github.com/yourusername/clawdify/issues"
},
"homepage": "https://developer.spotify.com/documentation/web-api"
}