mirror of
https://github.com/NetEase/tango.git
synced 2026-07-01 18:34:19 +08:00
- @music163/tango-context@1.0.0-alpha.1 - @music163/tango-core@1.0.0-alpha.1 - @music163/tango-designer@1.0.0-alpha.1 - @music163/tango-sandbox@1.0.0-alpha.1 - @music163/tango-setting-form@1.0.0-alpha.1 - @music163/tango-ui@1.0.0-alpha.1
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@music163/tango-context",
|
|
"version": "1.0.0-alpha.1",
|
|
"description": "react context for tango-apps",
|
|
"keywords": [
|
|
"react",
|
|
"hooks"
|
|
],
|
|
"author": "wwsun <ww.sun@outlook.com>",
|
|
"homepage": "",
|
|
"license": "MIT",
|
|
"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": {
|
|
"@music163/tango-core": "^1.0.0-alpha.1",
|
|
"@music163/tango-helpers": "^0.1.8",
|
|
"mobx-react-lite": "4.0.5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|