mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"version": "1.4.4",
|
|
"name": "@tmagic/core",
|
|
"type": "module",
|
|
"sideEffects": [
|
|
"dist/*"
|
|
],
|
|
"main": "dist/tmagic-core.umd.cjs",
|
|
"module": "dist/tmagic-core.js",
|
|
"types": "types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./types/index.d.ts",
|
|
"import": "./dist/tmagic-core.js",
|
|
"require": "./dist/tmagic-core.umd.cjs"
|
|
},
|
|
"./dist/style.css": {
|
|
"import": "./dist/style.css",
|
|
"require": "./dist/style.css"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"build": "npm run build:type && vite build",
|
|
"build:type": "npm run clear:type && tsc --declaration --emitDeclarationOnly --project tsconfig.build.json",
|
|
"check:type": "tsc --noEmit --project tsconfig.build.json",
|
|
"clear:type": "rimraf ./types"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Tencent/tmagic-editor.git"
|
|
},
|
|
"keywords": [
|
|
"vue"
|
|
],
|
|
"dependencies": {
|
|
"events": "^3.3.0",
|
|
"lodash-es": "^4.17.21"
|
|
},
|
|
"peerDependencies": {
|
|
"@tmagic/data-source": "workspace:*",
|
|
"@tmagic/schema": "workspace:*",
|
|
"@tmagic/utils": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/events": "^3.0.0",
|
|
"@types/lodash-es": "^4.17.4",
|
|
"@types/node": "^18.19.0",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^5.4.2",
|
|
"vite": "^5.2.11"
|
|
}
|
|
}
|