-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "l2js-client",
"version": "1.0.5",
"chronicle": "High Five",
"protocols": [
268,
271,
273
],
"description": "Lineage 2 Client Library",
"author": "Nikolay Petrovski <to.petrovski@gmail.com>",
"funding": "https://www.paypal.com/donate?hosted_button_id=9HF7J3CLAXDBG",
"license": "MIT",
"main": "dist/Client.js",
"types": "dist/Client.d.ts",
"scripts": {
"compile": "node build-indexes.js && tsc",
"clean": "rm -rf dist",
"prebuildpackage": "npm run clean && npm run compile && node dist/SetupPackage.js",
"buildpackage": "cd dist && npm pack",
"lint": "eslint ./src/**",
"dev:docs": "vuepress dev vuePress",
"build:docs": "vuepress build vuePress",
"publish": "npm publish --access public"
},
"keywords": [
"lineage2",
"nodejs",
"typescript",
"packets",
"bot",
"l2js"
],
"prettier": {
"trailingComma": "es5",
"singleQuote": false,
"useTabs": false,
"tabWidth": 2,
"printWidth": 120,
"semi": true,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf"
},
"repository": {
"type": "git",
"url": "https://github.com/npetrovski/l2js-client"
},
"bugs": {
"url": "https://github.com/npetrovski/l2js-client/issues"
},
"homepage": "https://github.com/npetrovski/l2js-client",
"dependencies": {},
"devDependencies": {
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"typescript": "^4.7.3",
"vuepress": "^1.8.2"
}
}