providers/package.json

87 lines
2.4 KiB
JSON
Raw Normal View History

2023-06-21 12:50:06 +00:00
{
2023-06-21 12:58:34 +00:00
"name": "@movie-web/providers",
2023-09-10 17:45:20 +00:00
"version": "0.0.12",
2023-06-21 12:50:06 +00:00
"description": "Package that contains all the providers of movie-web",
"main": "./lib/index.umd.js",
"types": "./lib/index.d.ts",
2023-06-21 12:50:06 +00:00
"files": [
"./lib"
],
2023-09-06 20:08:08 +00:00
"exports": {
".": {
2023-09-10 17:08:15 +00:00
"import": {
2023-09-10 17:45:20 +00:00
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
2023-09-10 17:08:15 +00:00
},
"require": {
2023-09-10 17:19:11 +00:00
"types": "./lib/index.d.ts",
"default": "./lib/index.umd.js"
2023-09-10 17:08:15 +00:00
}
2023-09-06 20:08:08 +00:00
}
},
2023-06-21 12:50:06 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/movie-web/providers.git"
},
"keywords": [
"movie-web",
"providers"
],
"author": "movie-web",
"license": "MIT",
"bugs": {
"url": "https://github.com/movie-web/providers/issues"
},
"homepage": "https://github.com/movie-web/providers#readme",
"scripts": {
"build": "vite build",
2023-09-06 15:04:43 +00:00
"test": "vitest run",
2023-09-26 19:21:28 +00:00
"test:dev": "ts-node ./src/dev-cli.ts",
2023-06-21 12:50:06 +00:00
"test:watch": "vitest",
2023-09-28 17:45:41 +00:00
"test:integration": "node ./tests/cjs && node ./tests/esm",
2023-09-06 12:32:13 +00:00
"test:coverage": "vitest run --coverage",
2023-06-21 12:50:06 +00:00
"lint": "eslint --ext .ts,.js src/",
"lint:fix": "eslint --fix --ext .ts,.js src/",
"lint:report": "eslint --ext .ts,.js --output-file eslint_report.json --format json src/",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"devDependencies": {
2023-08-27 18:36:38 +00:00
"@types/crypto-js": "^4.1.1",
2023-09-25 22:50:56 +00:00
"@types/node-fetch": "^2.6.6",
2023-09-28 00:18:07 +00:00
"@types/randombytes": "^2.0.1",
2023-09-25 22:50:56 +00:00
"@types/spinnies": "^0.5.1",
2023-06-21 12:50:06 +00:00
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
2023-09-06 12:32:13 +00:00
"@vitest/coverage-v8": "^0.34.3",
2023-09-25 22:50:56 +00:00
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"enquirer": "^2.4.1",
2023-06-21 12:50:06 +00:00
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
2023-09-28 19:27:11 +00:00
"node-fetch": "^2.7.0",
2023-06-21 12:50:06 +00:00
"prettier": "^2.6.2",
2023-09-25 22:50:56 +00:00
"spinnies": "^0.5.1",
2023-09-26 16:34:52 +00:00
"ts-node": "^10.9.1",
2023-06-21 12:50:06 +00:00
"tsc-alias": "^1.6.7",
"tsconfig-paths": "^4.2.0",
2023-06-21 12:50:06 +00:00
"typescript": "^4.6.3",
"vite": "^4.0.0",
2023-09-10 17:45:20 +00:00
"vite-plugin-dts": "^3.5.3",
2023-06-21 12:50:06 +00:00
"vite-plugin-eslint": "^1.8.1",
2023-09-28 19:27:11 +00:00
"vitest": "^0.32.2"
2023-08-27 18:36:38 +00:00
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"crypto-js": "^4.1.1",
2023-08-27 18:47:48 +00:00
"form-data": "^4.0.0",
2023-09-28 00:18:07 +00:00
"node-fetch": "^2.7.0",
2023-09-28 19:27:11 +00:00
"randombytes": "^2.1.0",
"unpacker": "^1.0.1"
2023-06-21 12:50:06 +00:00
}
}