forked from spotify/spotify-web-api-ts-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1007 Bytes
/
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
{
"name": "@fostertheweb/spotify-web-sdk",
"version": "1.3.0",
"description": "A TypeScript SDK for the Spotify Web API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "tsc",
"docs": "pnpm -C docs dev"
},
"repository": {
"type": "git",
"url": "https://github.com/fostertheweb/spotify-web-sdk"
},
"author": "Spotify",
"license": "Apache",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.3.2",
"@types/uuid": "^9.0.2",
"dotenv": "^16.3.1",
"jsdom": "^22.1.0",
"playwright": "^1.35.1",
"tsup": "^8.0.1",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"vite": "^4.3.9",
"vitest": "^0.32.2"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"spotify",
"webapi"
]
}