UNPKG

org.eframework.uni.util

Version:

EFramework Utility for Unite 是一个轻量级、跨平台的工具集,提供了统一的 API 接口,确保在多平台环境下保持一致的运行结果。

71 lines 1.95 kB
{ "name": "org.eframework.uni.util", "displayName": "EFramework Utility for Unite", "description": "EFramework Utility for Unite 是一个轻量级、跨平台的工具集,提供了统一的 API 接口,确保在多平台环境下保持一致的运行结果。", "version": "0.0.1", "license": "MIT", "author": { "name": "EFramework Organization", "email": "eframework-org@outlook.com", "url": "https://github.com/eframework-org" }, "repository": { "type": "git", "url": "git+https://github.com/eframework-org/UNI.UTIL.git" }, "bugs": { "url": "https://github.com/eframework-org/UNI.UTIL/issues" }, "keywords": [ "eframework", "package", "unite", "puer", "puerts", "unity", "unreal" ], "files": [ "dist/", "tests/dist/", "types/", "docs/", "package.json", "README.md", "LICENSE" ], "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs", "types": "./dist/index.d.ts" }, "./tests": { "require": "./tests/dist/index.cjs", "import": "./tests/dist/index.mjs", "types": "./tests/dist/index.d.ts" } }, "devDependencies": { "@rollup/plugin-node-resolve": "8.4.0", "@types/jest": "27.5.2", "@types/node": "16.11.7", "jest": "27.2.0", "rollup": "2.79.1", "rollup-plugin-sourcemaps": "0.6.3", "rollup-plugin-typescript2": "0.36.0", "rollup-plugin-terser": "7.0.2", "rollup-plugin-dts": "4.2.3", "ts-jest": "27.0.0", "typescript": "4.1.6" }, "scripts": { "test": "jest --coverage --runInBand", "debug": "rm -rf dist && rm -rf test/dist && rollup -c && npm link", "release": "rm -rf dist && rm -rf test/dist && rollup -c --mode=production", "prepublishOnly": "npm install && npm test && npm run release" } }