mirror of
https://github.com/NetEase/tango.git
synced 2026-07-03 20:05:00 +08:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "@music163/tango-core",
|
|
"version": "0.1.1",
|
|
"description": "tango core",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@babel/generator": "^7.21.3",
|
|
"@babel/parser": "^7.21.3",
|
|
"@babel/traverse": "^7.21.3",
|
|
"@babel/types": "^7.21.3",
|
|
"@music163/tango-helpers": "^0.1.1",
|
|
"@types/babel__generator": "^7.6.4",
|
|
"@types/babel__traverse": "^7.18.3",
|
|
"mobx": "6.9.0",
|
|
"path-browserify": "^1.0.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|