31 lines
802 B
JSON
31 lines
802 B
JSON
{
|
|
"name": "@extension/env",
|
|
"version": "0.5.0",
|
|
"description": "chrome extension - environment variables",
|
|
"type": "module",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"types": "index.mts",
|
|
"main": "dist/index.mjs",
|
|
"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",
|
|
"lint": "eslint .",
|
|
"lint:fix": "pnpm lint --fix",
|
|
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@dotenvx/dotenvx": "^1.44.1"
|
|
},
|
|
"devDependencies": {
|
|
"@extension/tsconfig": "workspace:*"
|
|
}
|
|
}
|