-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 2.16 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
{
"name": "grayjay-pietsmiet.de-plugin",
"version": "1.0.0",
"description": "an up and comming platform",
"homepage": "https://github.com/grayjay-sources/grayjay-source-pietsmietde",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/grayjay-sources/grayjay-source-pietsmietde.git"
},
"keywords": [
"pietsmiet.de",
"grayjay",
"plugin"
],
"author": "@Bluscream, @kaidelorenzo",
"license": "MIT",
"bugs": {
"url": "https://github.com/grayjay-sources/grayjay-source-pietsmietde/issues"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.10.2",
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.17.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"@kaidelorenzo/grayjay-polyfill": "gitlab:kaidelorenzo/grayjay-polyfill#2d1de8e0ca6895477ac6e3d1e5ef82ef4c17073e",
"@types/grayjay-source": "gitlab:kaidelorenzo/grayjay-plugin-types#1d1f2bd63d110fc8704295ba5e2ce245a2220fb1"
},
"scripts": {
"test": "node --test",
"debug-build:node": "node src/utilities/build.js \"http://localhost:8080\"",
"debug-build:bun": "bun run src/utilities/build.js \"http://localhost:8080\"",
"debug-build:deno": "deno run --allow-read --allow-write --allow-env --allow-run src/utilities/build.js \"http://localhost:8080\"",
"build:node": "node src/utilities/build.js",
"build:bun": "bun run src/utilities/build.js",
"build:deno": "deno run --allow-read --allow-write --allow-env --allow-run src/utilities/build.js",
"dev:node": "node src/utilities/dev.js",
"dev:bun": "bun run src/utilities/dev.js",
"dev:deno": "deno run --allow-read --allow-env --allow-run src/utilities/dev.js",
"lint:node": "npx eslint .",
"lint:bun": "bunx eslint .",
"lint:deno": "deno lint",
"release:node": "node src/utilities/release.js",
"release:bun": "bun run src/utilities/release.js",
"release:deno": "deno run --allow-read --allow-env --allow-run src/utilities/release.js"
}
}