diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-10-24 17:43:37 +0200 |
commit | ae187b6d75c8079da0be1dc288613bad8466fe61 (patch) | |
tree | 5ea0d34185a2270f29ffaa65e1f5258028d7d5d0 /desktop/node_modules/rcedit/package.json | |
download | mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.gz mist-ae187b6d75c8079da0be1dc288613bad8466fe61.tar.bz2 mist-ae187b6d75c8079da0be1dc288613bad8466fe61.zip |
Initial commit
Diffstat (limited to 'desktop/node_modules/rcedit/package.json')
-rw-r--r-- | desktop/node_modules/rcedit/package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/desktop/node_modules/rcedit/package.json b/desktop/node_modules/rcedit/package.json new file mode 100644 index 0000000..794e6c9 --- /dev/null +++ b/desktop/node_modules/rcedit/package.json @@ -0,0 +1,48 @@ +{ + "name": "rcedit", + "version": "3.1.0", + "description": "Node module to edit resources of exe", + "main": "lib/rcedit.js", + "types": "lib/index.d.ts", + "files": [ + "bin", + "lib/index.d.ts" + ], + "scripts": { + "docs:build": "node script/build-docs.js", + "mocha": "mocha test/*.js", + "test": "npm run lint && npm run tsd && npm run mocha", + "lint": "npm run lint:js && npm run lint:ts", + "lint:js": "standard", + "lint:ts": "ts-standard", + "tsd": "tsd" + }, + "repository": { + "type": "git", + "url": "https://github.com/electron/node-rcedit.git" + }, + "bugs": { + "url": "https://github.com/electron/node-rcedit/issues" + }, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + }, + "dependencies": { + "cross-spawn-windows-exe": "^1.1.0" + }, + "devDependencies": { + "@continuous-auth/semantic-release-npm": "^2.0.0", + "got": "^11.8.0", + "mocha": "^8.2.1", + "standard": "^16.0.3", + "temp": "^0.9.4", + "ts-standard": "^10.0.0", + "tsd": "^0.14.0", + "typedoc": "^0.20.0-beta.27", + "typescript": "^4.1.2" + }, + "tsd": { + "directory": "test" + } +} |