-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.1 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
{
"name": "@extension/ui",
"version": "0.5.1569",
"description": "chrome extension - ui components",
"type": "module",
"private": true,
"sideEffects": true,
"files": [
"dist/**"
],
"types": "index.ts",
"main": "dist/index.js",
"scripts": {
"clean:bundle": "rimraf dist",
"clean:node_modules": "pnpx rimraf node_modules",
"clean:turbo": "rimraf .turbo",
"clean": "pnpm clean:bundle && pnpm clean:node_modules && pnpm clean:turbo",
"ready": "tsc -b && tsc-alias -p tsconfig.json",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"format": "prettier . --write --ignore-path ../../.prettierignore",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@extension/i18n": "workspace:*",
"@extension/shared": "workspace:*",
"@extension/storage": "workspace:*",
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.0"
},
"devDependencies": {
"@extension/tailwindcss-config": "workspace:*",
"@extension/tsconfig": "workspace:*",
"deepmerge": "^4.3.1",
"react-spinners": "^0.17.0",
"tsc-alias": "^1.8.16",
"tailwindcss": "^3.4.10"
}
}