-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.26 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
{
"name": "dpp-mining-web",
"version": "1.0.0",
"description": "A web version and solver of the mining game found in the sinnoh underground in Pokémon Diamond, Pearl, and Platinum.",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --mode=production && npm run copy-assets",
"open": "start dist/index.html",
"publish": "echo \"Run SFTP: Sync Local -> Remote\" && exit 1",
"copy-assets": "node -e \"require('fs').cpSync('./src/assets', './dist/assets', {recursive: true});\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/totalaj/dpp-mining-web.git"
},
"author": "Totalaj Krantz",
"license": "ISC",
"bugs": {
"url": "https://github.com/totalaj/dpp-mining-web/issues"
},
"homepage": "https://github.com/totalaj/dpp-mining-web#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"globals": "^15.13.0",
"html-webpack-plugin": "^5.6.3",
"prettier": "^3.4.2",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ts-perlin-simplex": "^0.0.3"
}
}