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

View File

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