First upload version 0.0.1

This commit is contained in:
Neyra
2026-02-05 15:27:49 +08:00
commit 8e9b7201ed
4182 changed files with 593136 additions and 0 deletions

28
node_modules/universal-user-agent/package.json generated vendored Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "universal-user-agent",
"version": "7.0.3",
"type": "module",
"description": "Get a user agent string across all JavaScript Runtime Environments",
"exports": "./index.js",
"types": "index.d.ts",
"repository": "github:gr2m/universal-user-agent",
"keywords": [],
"author": "Gregor Martynus (https://github.com/gr2m)",
"license": "ISC",
"scripts": {
"lint": "prettier --check '*.{js,json,md}'",
"lint:fix": "prettier --write '*.{js,json,md}'",
"test": "npm run test:node && npm run test:types",
"test:bun": "bun test",
"test:node": "node index.test.js",
"test:deno": "deno test",
"test:types": "tsd"
},
"devDependencies": {
"prettier": "^2.0.0",
"tsd": "^0.17.0"
},
"publishConfig": {
"provenance": true
}
}