UNPKG

taro-define-config

Version:

Provide a defineConfig function for tarojs config

85 lines 2.09 kB
{ "name": "taro-define-config", "version": "0.15.0", "description": "Provide a defineConfig function for tarojs config", "keywords": [ "config", "define-config", "taro", "taro-plugin", "tarojs", "typescript" ], "homepage": "https://github.com/ntnyq/taro-define-config#readme", "bugs": { "url": "https://github.com/ntnyq/taro-define-config/issues" }, "license": "MIT", "author": { "name": "ntnyq", "email": "ntnyq13@gmail.com" }, "repository": { "type": "git", "url": "ntnyq/taro-define-config" }, "files": [ "dist" ], "type": "module", "main": "./dist/index.mjs", "types": "./dist/index.d.mts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "dependencies": { "@jridgewell/source-map": "^0.3.11", "@sass/types": "^1.101.0", "@swc/types": "^0.1.27", "@types/html-minifier-terser": "^7.0.2", "@types/node": "^26.0.1", "rollup": "^4.62.2", "tapable": "^2.3.3", "vite": "^8.1.0", "webpack": "^5.108.1", "webpack-chain": "^6.5.1", "webpack-dev-server": "^5.2.5" }, "devDependencies": { "@typescript/native-preview": "^7.0.0-dev.20260627.2", "bumpp": "^11.1.0", "husky": "^9.1.7", "nano-staged": "^1.0.2", "npm-run-all2": "^9.0.2", "oxfmt": "^0.56.0", "oxlint": "^1.71.0", "tsdown": "^0.22.3", "typescript": "^6.0.3", "vitest": "^4.1.9" }, "nano-staged": { "*.{js,ts,mjs,tsx}": "oxlint --fix", "*": "oxfmt --no-error-on-unmatched-pattern" }, "scripts": { "build": "tsdown", "format": "oxfmt", "format:check": "oxfmt --check", "lint": "oxlint", "release": "run-s build release:check release:version", "release:check": "run-s format:check lint typecheck", "release:version": "bumpp", "test": "vitest", "typecheck": "tsgo --noEmit" } }