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

View File

@ -1,5 +1,5 @@
{ {
"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",
@ -19,17 +19,28 @@
], ],
"author": "", "author": "",
"license": "MIT", "license": "MIT",
"type": "module",
"devDependencies": { "devDependencies": {
"typescript": "^4.9.5" "typescript": "^4.9.5"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/yourusername/universal-nfc.git" "url": "https://git.mohamad.dev/mo/unfc.git"
}, },
"engines": { "engines": {
"node": ">=12.0.0" "node": ">=12.0.0"
}, },
"browserslist": [ "browserslist": [
"chrome >= 89" "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"
] ]
} }