-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1008 Bytes
/
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
{
"name": "ph-node-api",
"version": "1.0.6",
"description": "NodeJS PlanetHoster api integration",
"repository": "[email protected]:PlanetHoster/api-node.git",
"author": "Marc-Andre G. <[email protected]>",
"license": "MIT",
"private": false,
"main": "./build/main.js",
"typings": "./build/main.d.ts",
"files": [
"build/**/**/*"
],
"scripts": {
"build": "rm -rf ./build && tsc",
"lint": "npx eslint src/**/**/*",
"prebuild-package": "yarn build",
"build-package": "cp ./package.json ./build && cp ./README.md ./build/README.md"
},
"devDependencies": {
"@tsconfig/node16": "1.0.4",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"typescript": "5.0.4"
}
}