forked from kcwiki/kancolle-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.57 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
64
65
66
67
{
"name": "@kancolle/main",
"version": "0.230827.0",
"description": "Using KanColle's main.js in Node.js",
"keywords": [
"kancolle"
],
"license": "MIT",
"author": "gakada (https://github.com/gakada)",
"contributors": [],
"homepage": "https://github.com/kcwiki/kancolle-main#readme",
"bugs": "https://github.com/kcwiki/kancolle-main/issues",
"repository": "kcwiki/kancolle-main",
"main": "dist/main.js",
"files": [
"dist/createjs.js",
"dist/main.js"
],
"scripts": {
"format": "prettier --loglevel warn --write 'src/*.{js,json,md,ts,yaml,yml}'",
"lint": "eslint --fix src",
"build": "node src/build.js",
"test": "yarn format && yarn lint && yarn build && node src/test.js",
"up": "yarn upgrade --latest"
},
"dependencies": {
"axios": "^1.4.0",
"canvas": "^2.8.0",
"createjs": "^1.0.1",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"pixi.js": "^7.2.4"
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fs-extra": "^11.1.1",
"js-beautify": "^1.14.0",
"prettier": "^3.0.2"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2021
},
"plugins": [
"prettier"
],
"root": true
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 150,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}