mirror of
https://github.com/NetEase/tango.git
synced 2026-07-03 02:45:12 +08:00
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "@music163/tango-ui",
|
|
"version": "0.1.1",
|
|
"description": "ui widgets of tango",
|
|
"keywords": [
|
|
"react",
|
|
"ui",
|
|
"widgets"
|
|
],
|
|
"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.0"
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/icons": "^4.8.0",
|
|
"@codemirror/autocomplete": "^6.7.1",
|
|
"@codemirror/lang-javascript": "^6.1.2",
|
|
"@codemirror/search": "^6.2.3",
|
|
"@music163/tango-helpers": "^0.1.1",
|
|
"@uiw/react-codemirror": "^4.19.3",
|
|
"antd": "^4.24.2",
|
|
"antd-easy-form": "^1.1.3",
|
|
"coral-system": "^1.0.5",
|
|
"react-json-view": "^1.21.3",
|
|
"react-monaco-editor-lite": "^1.2.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|