UNPKG

@xmipra/plugins

Version:
88 lines 2.3 kB
{ "name": "@xmipra/plugins", "version": "1.0.1-beta.0", "description": "Xmipra developing plugins.", "main": "./dist/index.cjs.js", "module": "./dist/index.esm.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.mjs", "require": "./dist/index.cjs.js" } }, "entry": [ { "root": true, "name": "index", "filepath": "index.ts" } ], "files": [ "dist" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "git+https://github.com/yangtianxia/xmipra.git", "directory": "packages/plugins" }, "keywords": [ "xmipra", "@xmipra/plugins", "tarojs" ], "author": "yangtianxia", "license": "MIT", "bugs": { "url": "https://github.com/yangtianxia/xmipra/issues" }, "homepage": "https://github.com/yangtianxia/xmipra#readme", "dependencies": { "@ant-design/colors": "^8.0.0", "@ctrl/tinycolor": "^4.1.0", "@txjs/bool": "^1.0.4", "@txjs/shared": "^1.0.7", "@types/extend": "^3.0.4", "chokidar": "^4.0.3", "clean-css": "^5.3.3", "cosmiconfig": "^9.0.0", "cosmiconfig-typescript-loader": "^6.1.0", "dayjs": "^1.11.13", "dotenv": "^16.5.0", "extend": "^3.0.2", "fs-extra": "^11.3.0", "glob": "^11.0.2", "json-ts": "^1.6.4", "kleur": "^4.1.5", "minimist": "^1.2.8", "postcss": "^8.5.3", "postcss-pxtransform": "^3.6.37", "prettier": "^3.5.3", "tailwindcss": "^3.4.17", "webpack": "^5.99.6" }, "devDependencies": { "@tarojs/service": "4.0.13", "@tarojs/taro": "4.0.13", "@types/clean-css": "^4.2.11" }, "peerDependencies": { "@tarojs/service": "4.0.13", "@tarojs/taro": "4.0.13" }, "scripts": { "clean": "rimraf ./dist", "lint": "eslint ./src --ext .ts --fix", "format": "prettier ./src --write", "build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly", "build:bundle": "ts-node ./build.ts --target=es2022 --platform=node --copy=postcss-pxtransform.d.ts", "build": "npm run clean && npm run lint && npm run build:types && npm run build:bundle", "dev": "npm run build -- --w", "test": "jest" } }