r-util-js/packages/uni-app/package.json

112 lines
2.9 KiB
JSON
Raw Normal View History

2026-03-16 17:58:57 +08:00
{
"name": "@r-utils/uni-app",
2026-05-28 12:00:13 +08:00
"version": "2.0.1",
2026-03-17 10:24:02 +08:00
"private": false,
2026-03-16 17:58:57 +08:00
"description": "uni-app工具库",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
2026-05-28 11:30:35 +08:00
"files": [
"dist"
],
2026-03-16 17:58:57 +08:00
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
2026-05-28 11:30:35 +08:00
"./bluetooth-utils": {
"types": "./dist/bluetooth-utils/index.d.ts",
"import": "./dist/bluetooth-utils/index.mjs",
"require": "./dist/bluetooth-utils/index.cjs"
},
"./nfc": {
"types": "./dist/nfc/index.d.ts",
"import": "./dist/nfc/index.mjs",
"require": "./dist/nfc/index.cjs"
},
"./printer": {
"types": "./dist/printer/index.d.ts",
"import": "./dist/printer/index.mjs",
"require": "./dist/printer/index.cjs"
},
"./request": {
"types": "./dist/request/index.d.ts",
"import": "./dist/request/index.mjs",
"require": "./dist/request/index.cjs"
},
"./uni-helper": {
"types": "./dist/uni-helper/index.d.ts",
"import": "./dist/uni-helper/index.mjs",
"require": "./dist/uni-helper/index.cjs"
},
"./upload": {
"types": "./dist/upload/index.d.ts",
"import": "./dist/upload/index.mjs",
"require": "./dist/upload/index.cjs"
}
2026-03-16 17:58:57 +08:00
},
"keywords": [
"uni-app"
],
2026-03-18 15:53:43 +08:00
"publishConfig": {
"registry": "http://npm.nps.yunvip123.cn"
},
2026-03-26 08:56:15 +08:00
"author": {
"name": "CodiceFabbrica",
"email": "randy1924@163.com",
"url": "https://gitee.com/codice_fabbrica"
},
"homepage": "https://gitee.com/codice_fabbrica/r-util-js",
"repository": {
"url": "https://gitee.com/codice_fabbrica/r-util-js.git",
"type": "git"
},
"bugs": {
"url": "https://gitee.com/codice_fabbrica/r-util-js/issues"
},
"engines": {
"node": ">=18.12.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.32.1",
2026-03-16 17:58:57 +08:00
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
2026-05-28 11:30:35 +08:00
"typecheck": "tsc -p tsconfig.json --noEmit",
2026-03-16 17:58:57 +08:00
"lint": "eslint --ext .js,ts --fix src",
2026-05-28 11:30:35 +08:00
"format": "prettier --write src",
2026-03-16 17:58:57 +08:00
"commit": "cz",
"lint-staged": "lint-staged",
2026-04-20 17:54:26 +08:00
"test": "vitest run"
2026-03-16 17:58:57 +08:00
},
"dependencies": {
2026-05-28 11:54:22 +08:00
"@jonny1994/qqmap-wx-jssdk": "^1.4.0",
2026-03-26 08:56:15 +08:00
"@r-utils/common": "workspace:^",
2026-04-20 17:54:26 +08:00
"chroma-js": "catalog:",
"lodash-es": "catalog:",
"qs": "catalog:"
2026-03-17 14:42:03 +08:00
},
"peerDependencies": {
2026-03-26 08:56:15 +08:00
"@dcloudio/uni-app": ">=3.0.0",
2026-03-17 14:42:03 +08:00
"vue": "^3.3.0"
2026-03-16 17:58:57 +08:00
},
2026-03-26 08:56:15 +08:00
"peerDependenciesMeta": {
"@dcloudio/uni-app": {
"optional": true
}
},
2026-03-16 17:58:57 +08:00
"devDependencies": {
"@dcloudio/types": "^3.0.7",
2026-03-26 08:56:15 +08:00
"@dcloudio/uni-app": "3.0.0-4070520250711001",
2026-04-20 17:54:26 +08:00
"@types/chroma-js": "catalog:",
"@types/lodash-es": "catalog:",
"@types/qs": "catalog:",
2026-03-26 08:56:15 +08:00
"vite": "catalog:",
"vite-plugin-dts": "catalog:",
2026-03-16 17:58:57 +08:00
"vue": "^3.3.0"
}
}