-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.67 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
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
{
"name": "@interwebalchemy/beat-brain",
"version": "1.0.0",
"license": "MIT",
"description": "ChatGPT-powered music recommendations via Spotify",
"main": "index.js",
"engines": {
"node": ">=18"
},
"keywords": [
"prompt engineering",
"gpt-3",
"ai",
"openai",
"open ai",
"chatgpt",
"spotify",
"music recommendations",
"playlist",
"langchain"
],
"author": {
"name": "Interweb Alchemy",
"url": "https://github.com/InterwebAlchemy/"
},
"repository": {
"type": "git",
"url": "https://github.com/InterwebAlchemy/obsidian-ai-research-assistant.git"
},
"prettier": "prettier-config-standard",
"lint-staged": {
"package.json": "scriptlint --fix",
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,ts,jsx,tsx,css,md}": "prettier --write",
"*.{yaml,yml}": "yamllint"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prepare": "is-ci || husky install",
"start": "next start",
"test": "run-s test:*",
"test:echo": "echo \"Error: no test specified\"",
"test:exit": "exit 1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt-cli": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/lodash.samplesize": "^4.2.7",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/spotify-web-playback-sdk": "^0.1.16",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-config-standard": "^5.0.0",
"scriptlint": "^2.2.0",
"semantic-release": "^20.1.1",
"typescript": "^4.9.5",
"yaml-lint": "^1.7.0"
},
"dependencies": {
"@agney/react-loading": "^0.1.2",
"@dqbd/tiktoken": "^0.4.0",
"@spotify/web-api-ts-sdk": "^1.1.0",
"@supabase/auth-helpers-nextjs": "^0.7.4",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.3.5",
"@supabase/auth-ui-shared": "^0.1.3",
"@supabase/supabase-js": "^2.10.0",
"lodash.samplesize": "^4.2.0",
"next": "^13.2.3",
"openai": "^3.3.0",
"openai-edge": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"use-debounce": "^9.0.3",
"uuid": "^9.0.0"
}
}