node_modules-path

This commit is contained in:
Nikolay Kharitonov
2023-12-05 17:56:29 +00:00
parent f1e8b6780c
commit 44fb65a862
2 changed files with 24 additions and 2 deletions

21
package-lock.json generated
View File

@@ -436,6 +436,15 @@
"integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
"optional": true "optional": true
}, },
"bindings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
"integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
"optional": true,
"requires": {
"file-uri-to-path": "1.0.0"
}
},
"block-stream": { "block-stream": {
"version": "0.0.9", "version": "0.0.9",
"resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
@@ -1732,6 +1741,12 @@
"flat-cache": "^2.0.1" "flat-cache": "^2.0.1"
} }
}, },
"file-uri-to-path": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
"integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
"optional": true
},
"fill-range": { "fill-range": {
"version": "7.0.1", "version": "7.0.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
@@ -2995,6 +3010,11 @@
} }
} }
}, },
"node_modules-path": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/node_modules-path/-/node_modules-path-2.0.7.tgz",
"integrity": "sha512-/6HODA5TBRgSrtRWZprBmgvnS1LRxiHW0RgGO0/KaYyXaf5e11nrIKaZx+iHw+2OKm61Rk9l9gncF6ewbsjQvQ=="
},
"nopt": { "nopt": {
"version": "3.0.6", "version": "3.0.6",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz",
@@ -4721,6 +4741,7 @@
"integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
"optional": true, "optional": true,
"requires": { "requires": {
"bindings": "^1.5.0",
"nan": "^2.12.1" "nan": "^2.12.1"
} }
}, },

View File

@@ -7,7 +7,7 @@
"screeps": "bin/screeps.js" "screeps": "bin/screeps.js"
}, },
"scripts": { "scripts": {
"postinstall": "cd ../.. && npm explore @screeps/driver -- npx webpack" "postinstall": "cd `node_modules` && npm explore @screeps/driver -- npx webpack"
}, },
"author": "Artem Chivchalov <contact@screeps.com>", "author": "Artem Chivchalov <contact@screeps.com>",
"license": "ISC", "license": "ISC",
@@ -22,7 +22,8 @@
"@screeps/engine": "4.2.20-rc1", "@screeps/engine": "4.2.20-rc1",
"@screeps/launcher": "4.1.1", "@screeps/launcher": "4.1.1",
"@screeps/pathfinding": "0.4.17", "@screeps/pathfinding": "0.4.17",
"@screeps/storage": "5.1.2" "@screeps/storage": "5.1.2",
"node_modules-path": "2.0.7"
}, },
"engines": { "engines": {
"node": ">=10.13.0", "node": ">=10.13.0",