-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.22 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
{
"name": "magmastream_plugin_template",
"version": "0.0.0",
"description": "A plugin template for Magmastream.",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts ./src",
"ci": "run-s lint build"
},
"devDependencies": {
"@favware/rollup-type-bundler": "^3.3.0",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"typedoc": "^0.25.13",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "^5.4.5"
},
"dependencies": {
"magmastream": "^2.5.5",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"object-curly-spacing": [
"error",
"always"
]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
},
"keywords": [
"plugin",
"magmastream"
],
"repository": {
"url": "https://github.com/Blackfort-Hosting/magmastream_plugin/tree/main"
},
"homepage": "https://docs.blackforthosting.com",
"author": "Abel Purnwasy",
"license": "Apache-2.0"
}