-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 997 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "mermkit",
"private": true,
"version": "0.2.6",
"repository": {
"type": "git",
"url": "https://github.com/MermaidKit/mermkit.git"
},
"packageManager": "npm@10.9.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b",
"clean": "node ./scripts/clean.mjs",
"lint": "eslint .",
"test": "npm run build && node tests/run.mjs",
"version:sync": "node scripts/sync-version.mjs",
"release:prepare": "node scripts/release-prepare.mjs",
"publish:npm": "node scripts/publish-npm.mjs",
"publish:pypi": "node scripts/publish-pypi.mjs",
"publish:crates": "node scripts/publish-crates.mjs",
"publish:all": "npm run publish:npm && npm run publish:pypi && npm run publish:crates"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.12",
"eslint": "^8.57.0",
"typescript": "^5.5.4"
}
}