-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 972 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 972 Bytes
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
{
"name": "@planethoster-oss/api",
"version": "1.1.0",
"description": "NodeJS PlanetHoster api integration",
"repository": "https://github.com/PlanetHoster/ph-node-api.git",
"license": "MIT",
"private": false,
"main": "./build/main.js",
"publishConfig": {
"access": "public"
},
"typings": "./build/main.d.ts",
"files": [
"build/**/**/*"
],
"scripts": {
"build": "rm -rf ./build && tsc",
"lint": "eslint src/**/**/*",
"prebuild-package": "pnpm build",
"build-package": "cp ./package.json ./build && cp ./README.md ./build/README.md"
},
"devDependencies": {
"@tsconfig/node16": "1.0.4",
"@types/node": "22.18.10",
"@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.32.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"typescript": "5.0.4"
}
}