2023-06-14 06:02:30 +02:00
|
|
|
{
|
2023-06-14 07:22:55 +02:00
|
|
|
"name": "@pinmenote/browser-api",
|
2023-06-17 08:13:19 +02:00
|
|
|
"version": "0.0.5",
|
2023-06-14 07:22:55 +02:00
|
|
|
"author": "Michal Szczepanski",
|
|
|
|
"license": "MIT",
|
|
|
|
"description": "cross browser compatible api layer",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/pinmenote/browser-api/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/pinmenote/browser-api#readme",
|
|
|
|
"source": "src/index.ts",
|
|
|
|
"module": "dist/module.js",
|
|
|
|
"types": "dist/types.d.ts",
|
2023-06-14 06:02:30 +02:00
|
|
|
"scripts": {
|
2023-09-19 19:30:54 +02:00
|
|
|
"release": "npm run prod && npm run uglify",
|
2023-06-14 07:22:55 +02:00
|
|
|
"dev": "NODE_ENV=development parcel build",
|
2023-06-17 08:12:45 +02:00
|
|
|
"prod": "parcel build --no-source-maps",
|
|
|
|
"uglify": "uglifyjs --compress --mangle -o dist/module.js -- dist/module.js",
|
2023-06-14 06:02:30 +02:00
|
|
|
"lint": "eslint --ext .ts src/",
|
|
|
|
"lint:fix": "eslint --ext .ts,.tsx src/ --fix"
|
|
|
|
},
|
|
|
|
"pre-commit": [
|
|
|
|
"lint"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2023-06-14 07:22:55 +02:00
|
|
|
"@parcel/packager-ts": "^2.9.2",
|
|
|
|
"@parcel/transformer-typescript-tsc": "^2.9.2",
|
|
|
|
"@parcel/transformer-typescript-types": "^2.9.2",
|
|
|
|
"@types/chrome": "^0.0.237",
|
|
|
|
"@types/firefox-webext-browser": "^111.0.1",
|
|
|
|
"@types/node": "^20.3.1",
|
2023-06-14 06:02:30 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
|
|
"@typescript-eslint/parser": "^5.48.2",
|
|
|
|
"eslint": "^8.32.0",
|
|
|
|
"eslint-config-prettier": "^8.6.0",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-06-14 07:22:55 +02:00
|
|
|
"parcel": "^2.9.2",
|
2023-06-14 06:02:30 +02:00
|
|
|
"pre-commit": "^1.2.2",
|
2023-06-17 08:12:45 +02:00
|
|
|
"typescript": "^4.9.4",
|
|
|
|
"uglify-js": "^3.17.4"
|
2023-06-14 06:02:30 +02:00
|
|
|
}
|
|
|
|
}
|