Initial commit
This commit is contained in:
39
pages/devtools-panel/package.json
Normal file
39
pages/devtools-panel/package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "@extension/devtools-panel",
|
||||
"version": "0.5.0",
|
||||
"description": "chrome extension - devtools panel",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"sideEffects": true,
|
||||
"files": [
|
||||
"dist/**"
|
||||
],
|
||||
"scripts": {
|
||||
"clean:node_modules": "pnpx rimraf node_modules",
|
||||
"clean:turbo": "rimraf .turbo",
|
||||
"clean": "pnpm clean:turbo && pnpm clean:node_modules",
|
||||
"build": "vite build",
|
||||
"dev": "vite build --mode development",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "pnpm lint --fix",
|
||||
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
||||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@extension/shared": "workspace:*",
|
||||
"@extension/storage": "workspace:*",
|
||||
"@extension/i18n": "workspace:*",
|
||||
"@extension/ui": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@extension/tailwindcss-config": "workspace:*",
|
||||
"@extension/tsconfig": "workspace:*",
|
||||
"@extension/vite-config": "workspace:*"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"tailwindcss": {},
|
||||
"autoprefixer": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user