updated package json

This commit is contained in:
Mohamad 2025-03-04 20:24:52 +01:00
parent a4e4aefe2e
commit 3bda04ada7
2 changed files with 75 additions and 64 deletions

62
package-lock.json generated
View File

@ -1,33 +1,33 @@
{ {
"name": "universal-nfc", "name": "universal-nfc",
"version": "1.0.0", "version": "1.0.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "universal-nfc", "name": "universal-nfc",
"version": "1.0.0", "version": "1.0.0",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"typescript": "^4.9.5" "typescript": "^4.9.5"
}, },
"engines": { "engines": {
"node": ">=12.0.0" "node": ">=12.0.0"
} }
}, },
"node_modules/typescript": { "node_modules/typescript": {
"version": "4.9.5", "version": "4.9.5",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
"integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
"dev": true, "dev": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"bin": { "bin": {
"tsc": "bin/tsc", "tsc": "bin/tsc",
"tsserver": "bin/tsserver" "tsserver": "bin/tsserver"
}, },
"engines": { "engines": {
"node": ">=4.2.0" "node": ">=4.2.0"
} }
} }
} }
} }

View File

@ -1,35 +1,46 @@
{ {
"name": "universal-nfc", "name": "unfc",
"version": "1.0.0", "version": "1.0.0",
"description": "A framework-agnostic NFC package for reading/writing NFC tags in web apps and PWAs", "description": "A framework-agnostic NFC package for reading/writing NFC tags in web apps and PWAs",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"prepare": "npm run build", "prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"keywords": [ "keywords": [
"nfc", "nfc",
"ndef", "ndef",
"rfid", "rfid",
"web nfc", "web nfc",
"pwa", "pwa",
"mobile" "mobile"
], ],
"author": "", "author": "",
"license": "MIT", "license": "MIT",
"devDependencies": { "type": "module",
"typescript": "^4.9.5" "devDependencies": {
}, "typescript": "^4.9.5"
"repository": { },
"type": "git", "repository": {
"url": "https://github.com/yourusername/universal-nfc.git" "type": "git",
}, "url": "https://git.mohamad.dev/mo/unfc.git"
"engines": { },
"node": ">=12.0.0" "engines": {
}, "node": ">=12.0.0"
"browserslist": [ },
"chrome >= 89" "browserslist": [
] "chrome >= 89"
],
"files": [
"dist/",
"dist/index.js",
"dist/definitions.js",
"dist/web.js",
"dist/nfc.js",
"dist/simple-nfc.js.js",
"dist/utils.js.js",
"dist/definitions.js"
]
} }