63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@signalapp/windows-ucv",
|
|
"version": "1.0.1",
|
|
"description": "Windows User Consent Verification",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/esm/index.js",
|
|
"files": [
|
|
"addon.cpp",
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"!dist/esm/tsconfig.tsbuildinfo",
|
|
"README.md",
|
|
"binding.gyp"
|
|
],
|
|
"scripts": {
|
|
"watch": "npm run build:cjs -- --watch",
|
|
"build": "npm run build:cjs && npm run build:esm",
|
|
"build:cjs": "tsc",
|
|
"build:esm": "tsc --module es2020 --declaration false --outDir dist/esm",
|
|
"format": "prettier --cache --write .",
|
|
"lint": "npm run check:eslint && npm run check:format",
|
|
"check:eslint": "eslint --cache .",
|
|
"check:format": "prettier --cache --check .",
|
|
"prepublishOnly": "npm run clean && npm run build && npm run lint",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/signalapp/node-windows-ucv.git"
|
|
},
|
|
"keywords": [
|
|
"winrt",
|
|
"user",
|
|
"consent",
|
|
"verification",
|
|
"windows"
|
|
],
|
|
"author": {
|
|
"name": "Signal Messenger, LLC",
|
|
"email": "support@signal.org"
|
|
},
|
|
"license": "AGPL-3.0-only",
|
|
"bugs": {
|
|
"url": "https://github.com/signalapp/node-windows-ucv/issues"
|
|
},
|
|
"homepage": "https://github.com/signalapp/node-windows-ucv#readme",
|
|
"dependencies": {
|
|
"bindings": "^1.5.0",
|
|
"node-addon-api": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.9.1",
|
|
"@types/bindings": "^1.5.5",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/node": "^22.5.0",
|
|
"eslint": "^9.9.1",
|
|
"prettier": "^3.3.3",
|
|
"typescript": "^5.5.4",
|
|
"typescript-eslint": "^8.2.0"
|
|
}
|
|
}
|