-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.58 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
{
"name": "@spotifly/repository",
"version": "0.0.0",
"private": true,
"description": "An inofficial toolbelt for Spotify",
"homepage": "https://spotifly.nougat.dev/",
"repository": {
"type": "git",
"url": "https://github.com/eegli/spotifly"
},
"license": "MIT",
"author": {
"name": "Eric Egli",
"email": "[email protected]"
},
"bin": {
"spotifly": "packages/cli/bin.js"
},
"workspaces": [
"packages/*",
"integration",
"website"
],
"scripts": {
"build": "preconstruct build",
"build:release": "yarn build && yarn forallpackages exec rm -rf _release && yarn forallpackages pack && yarn forallpackages exec \"mkdir _release && tar zxvf package.tgz --directory _release && rm package.tgz\"",
"check-types": "tsc",
"dev": "preconstruct dev",
"forallpackages": "yarn workspaces foreach -A --no-private --verbose",
"format": "prettier --write packages website \"**/*.{js,ts,tsx,md}\"",
"get-endpoint-coverage": "yarn build && node scripts/endpoint-coverage.mjs",
"postinstall": "preconstruct dev && husky install",
"lint": "yarn eslint .",
"release": "yarn build:release && changeset publish",
"sort-packages": "npx --yes sort-package-json \"package.json\" \"packages/*/package.json\" ",
"status": "changeset status",
"test": "jest --silent --verbose",
"test:pkg": "jest --verbose --selectProjects",
"test:integration": "jest --config integration/jest.config.js",
"watch": "preconstruct watch"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.1",
"@preconstruct/cli": "^2.8.2",
"@tsd/typescript": "^5.3.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/spotify-api": "^0.0.25",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"jest-runner-tsd": "^6.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-2": "npm:prettier@^2",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-jest": "^29.1.1",
"type-fest": "^4.9.0",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10"
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}