-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.88 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
{
"name": "bdo-alchemy-profits",
"version": "1.0.0",
"description": "a tool to find profitable alchemy recipes in black desert online",
"main": "main.mjs",
"author": "eris <eris@jpegzilla.com>",
"private": "true",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.21.0",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/preset-env": "^7.20.2",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.2",
"babel-plugin-replace-import-extension": "^1.1.3",
"babel-preset-minify": "^0.5.2",
"pkg": "^5.8.0",
"prettier": "^2.6.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-glob": "^2.0.2",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"format": "prettier --write .",
"start": "NODE_NO_WARNINGS=1 node main.mjs",
"dev": "nodemon main.js",
"start:wp": "node dist/wp/main.js",
"start:pwp": "node dist/pwp/js.js",
"package": "npx pkg -c package.json -public -t node16-win-x64 -o ./dist/bin/bdo-ap.exe ./dist/ncc/index.mjs",
"package:wp": "pkg --target node16-win-x64 -o ./dist/bin/bdo-ap.exe ./dist/wp/main.js --public",
"package:pwp": "pkg --target node16-win-x64 -o ./dist/bin/dalishain.exe ./dist/pwp/js.js --public",
"webpack": "webpack --config webpack.config.mjs",
"postwebpack": "webpack --config postwebpack.config.mjs",
"browserify": "browserify main.mjs -p esmify > ./dist/br/bundle.js",
"clean": "rm -fr ./dist/wp/** ./dist/br/** ./dist/bin/**"
},
"dependencies": {
"axios": "0.27.2",
"chalk": "^5.2.0",
"jsdom": "^23.0.1",
"puppeteer": "^19.6.2",
"readline-sync": "^1.4.10"
},
"pkg": {
"outputPath": "pack_staging",
"assets": [
"wp/**/*",
"node_modules/puppeteer/**/*",
"node_modules/puppeteer-core/**/*"
]
}
}