mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-11-02 11:54:15 +01:00
Adding the MIT license documentation so the published package metadata accurately reflects the license. The MIT license is currently included in the package distribution https://www.npmjs.com/package/@mermaid-js/examples?activeTab=code, but not documented in the metadata. This causes npmjs.com to display the license as "none"
35 lines
730 B
JSON
35 lines
730 B
JSON
{
|
|
"name": "@mermaid-js/examples",
|
|
"version": "1.0.0",
|
|
"description": "Mermaid examples package",
|
|
"author": "Sidharth Vinod",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"module": "./dist/mermaid-examples.core.mjs",
|
|
"types": "./dist/mermaid.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/mermaid-examples.core.mjs",
|
|
"default": "./dist/mermaid-examples.core.mjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mermaid-js/mermaid"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"mermaid": "workspace:*"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|