Files
wehub-resource-sync 2d398e1894
Deploy Github Pages / deploy (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:30:43 +08:00

46 lines
1.1 KiB
JSON

{
"name": "@music163/tango-helpers",
"version": "1.2.4",
"description": "Shared types, helpers, and hooks of tango-apps",
"keywords": [
"shared",
"helper",
"utils",
"types"
],
"author": "wwsun <ww.sun@outlook.com>",
"homepage": "",
"license": "MIT",
"sideEffects": false,
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/netease/tango.git"
},
"scripts": {
"clean": "rimraf lib/",
"build": "yarn clean && yarn build:esm && yarn build:cjs",
"build:esm": "tsc --project tsconfig.prod.json --outDir lib/esm/ --module ES2020",
"build:cjs": "tsc --project tsconfig.prod.json --outDir lib/cjs/ --module CommonJS",
"prepublishOnly": "yarn build"
},
"peerDependencies": {
"react": ">= 16.8"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}