simptrad
Version:
51 lines • 1.21 kB
JSON
{
"name": "simptrad",
"version": "0.2.0",
"description": "简体字和繁体字转换",
"keywords": [
"chinese",
"simplified-chinese",
"traditional-chinese"
],
"homepage": "https://github.com/yjl9903/simptrad#readme",
"bugs": {
"url": "https://github.com/yjl9903/simptrad/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjl9903/simptrad.git"
},
"license": "MIT",
"author": "XLor",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"bumpp": "^9.10.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"unbuild": "^3.2.0",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"scripts": {
"build": "unbuild",
"format": "prettier --write src/**/*.ts",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "vitest",
"test:ci": "vitest --run",
"typecheck": "tsc --noEmit",
"preversion": "pnpm typecheck && pnpm build"
}
}