canal007/voice-bot
0
1{2 "name": "rslog",3 "version": "1.2.3",4 "types": "./dist/index.d.ts",5 "main": "./dist/index.cjs",6 "module": "./dist/index.mjs",7 "exports": {8 ".": {9 "types": "./dist/index.d.ts",10 "import": "./dist/index.mjs",11 "require": "./dist/index.cjs"12 }13 },14 "files": [15 "dist"16 ],17 "engines": {18 "node": ">=14.17.6"19 },20 "packageManager": "pnpm@8.8.0",21 "repository": {22 "type": "git",23 "url": "https://github.com/rspack-contrib/rslog.git"24 },25 "devDependencies": {26 "@modern-js/module-tools": "2.46.1",27 "@modern-js/tsconfig": "2.46.1",28 "@types/node": "~16.11.7",29 "prettier": "~2.8.1",30 "rimraf": "~3.0.2",31 "supports-color": "^9.4.0",32 "typescript": "~5.0.4",33 "vitest": "^2.0.5"34 },35 "publishConfig": {36 "access": "public",37 "registry": "https://registry.npmjs.org/"38 },39 "scripts": {40 "preview": "bun run ./preview.ts",41 "dev": "modern dev",42 "build": "modern build",43 "build:watch": "modern build -w",44 "reset": "rimraf ./**/node_modules",45 "test": "vitest"46 }47}