-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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": "spicetify-apps",
"version": "1.0.0",
"private": true,
"type": "module",
"repository": "Prog-Jacob/spicetify-apps",
"author": {
"name": "Ahmed Abdelaziz",
"url": "https://github.com/Prog-Jacob"
},
"scripts": {
"build": "tsx scripts/build.mts && pnpm symlink",
"dev": "pnpm symlink && tsx scripts/build.mts --watch & spicetify watch -a & wait",
"build:app": "tsx scripts/build.mts --app",
"typecheck": "tsc -p scripts/tsconfig.json && pnpm -r run typecheck",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,mts,json,css,md}\"",
"precommit": "pnpm format && pnpm lint && pnpm typecheck",
"changeset": "changeset",
"release": "tsx scripts/release.mts",
"download": "pnpm -r run download",
"symlink": "pnpm -r run symlink"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.4",
"@tailwindcss/cli": "^4.2.1",
"@types/node": "^25.3.5",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"clsx": "^2.1.1",
"esbuild": "^0.24.2",
"esbuild-plugin-external-global": "^1.0.1",
"eslint": "^9.39.4",
"prettier": "^3.8.1",
"radix-ui": "^1.4.3",
"tailwind-merge": "^2.6.1",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@parcel/watcher"
]
},
"i18n": {
"bundleLocales": [
"ar"
]
},
"dependencies": {
"react-error-boundary": "^6.1.1"
}
}