-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "bgutils-js",
"version": "3.1.0",
"description": "A JavaScript library for interfacing with Botguard.",
"main": "dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"lint": "npx eslint ./src/**/*.ts",
"lint:fix": "npx eslint --fix ./src/**/*.ts",
"clean": "npx rimraf ./dist ./bundle",
"build": "npm run clean && npm run lint && npm run build:esm && npm run bundle:node",
"build:esm": "npx tsc",
"bundle:node": "npx esbuild ./dist/index.js --bundle --outfile=./bundle/index.cjs --platform=node --target=node10 --format=cjs --sourcemap --banner:js=\"/* eslint-disable */\"",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuanRT/BgUtils.git"
},
"keywords": [
"BotGuard",
"PoToken",
"YouTube"
],
"author": "LuanRT <[email protected]> (https://github.com/LuanRT)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuanRT/BgUtils/issues"
},
"homepage": "https://github.com/LuanRT/BgUtils#readme",
"funding": [
"https://github.com/sponsors/LuanRT"
],
"devDependencies": {
"@eslint/js": "^9.9.0",
"@stylistic/eslint-plugin": "^2.6.4",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./bundle/index.cjs"
}
}
}