-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "procon-ip",
"version": "1.8.0",
"description": "Library for the ProCon.IP pool controller",
"license": "MIT",
"homepage": "https://github.com/ylabonte/procon-ip#readme",
"author": {
"name": "Yannic Labonte",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ylabonte/procon-ip/issues"
},
"main": "./module/index.js",
"module": "./module/index.js",
"exports": {
"import": "./module/index.js",
"require": "./lib/index.js"
},
"readmeFilename": "README.md",
"files": [
"module/",
"lib/"
],
"scripts": {
"format": "npx prettier --write \"src/**/*.ts\"",
"lint": "npx eslint -- src/**",
"lint:fix": "npx eslint --fix -- src/**",
"build": "yarn run build:esmodule && yarn run build:commonjs",
"build:commonjs": "npx tsc -p tsconfig-commonjs.json",
"build:esmodule": "npx tsc -p tsconfig.json",
"build:docs": "rm -rf docs && npx typedoc --excludeInternal --out docs/ --entryPointStrategy expand src/index.ts && touch docs/.nojekyll",
"build:all": "yarn run build && yarn run build:docs",
"prepack": "yarn run build",
"prepublishOnly": "yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ylabonte/procon-ip.git"
},
"keywords": [
"ProCon.IP",
"pool",
"controller",
"library"
],
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.7.8"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}