UNPKG

@aidarkezio/main-func

Version:
92 lines (91 loc) • 2.65 kB
{ "name": "@aidarkezio/main-func", "version": "2.3.0", "type": "commonjs", "description": "📦 It has my funcs", "main": "./lib/cjs/index.js", "types": "./lib/@types/index.d.ts", "engines": { "node": ">= 12.20" }, "scripts": { "test": "npm run build && npm run test:cjs && npm run test:esm", "test:cjs": "mocha --timeout 20000 ./lib/cjs/**/test.js", "test:esm": "mocha --timeout 20000 ./lib/esm/**/test.js", "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types && node scripts/write-package.js", "build:cjs": "tsc --p src/tsconfig.cjs.json", "build:esm": "tsc --p src/tsconfig.esm.json", "build:types": "tsc --p tsconfig.types.json", "lint:fix": "npx eslint src/** --fix --ignore-pattern src/*.json", "clean": "rimraf ./lib", "tests:run:ts": "tsc tests/ts/index.ts && node tests/ts/index.js", "tests:run:esm": "node tests/esm/index.js", "tests:run:cjs": "node tests/cjs/index.js", "prepare": "node scripts/compile-typescript.js" }, "exports": { ".": { "types": "./lib/@types/index.d.ts", "import": "./lib/esm/index.js", "require": "./lib/cjs/index.js" } }, "files": [ "lib/*", "src/*", "data/*", "scripts/*" ], "directories": { "lib": "lib", "test": "tests", "src": "src", "scripts": "scripts" }, "repository": { "type": "git", "url": "git+https://github.com/AiDarkEzio/main-func.git" }, "keywords": [ "funcs" ], "author": "AiDarkezio <subadraposhithapr@gmail.com> (https://aidarkezio.github.io)", "license": "MIT", "bugs": { "url": "https://github.com/AiDarkEzio/main-func/issues" }, "homepage": "https://github.com/AiDarkEzio/main-func#readme", "dependencies": { "axios": "^0.27.2", "cheerio": "^1.0.0-rc.10", "crypto": "^1.0.1", "form-data": "^4.0.0", "got": "^11.8.3", "human-readable": "^0.2.1", "jsdom": "^20.0.0", "node-fetch": "^3.2.10", "similarity": "^1.2.1", "steno": "^2.1.0", "zod": "^3.17.3" }, "devDependencies": { "@types/chai": "^4.3.0", "@types/jsdom": "^20.0.0", "@types/mocha": "^9.1.0", "@types/node": "^18.7.17", "@types/ws": "^8.2.2", "@typescript-eslint/eslint-plugin": "^5.13.0", "@typescript-eslint/parser": "^5.13.0", "chai": "^4.3.6", "eslint": "^7.32.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.25.4", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.0.0", "mocha": "^10.0.0", "typescript": "^4.5.5" }, "optionalDependencies": { "ws": "^8.4.2" } }