-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 933 Bytes
/
package.json
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
{
"name": "@nexeth/mermaid",
"main": "dist/index.js",
"module": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"version": "0.1.2",
"type": "module",
"author": "mfbevan",
"license": "MIT",
"private": false,
"repository": "https://github.com/nexeth/mermaid",
"scripts": {
"start": "bun index.ts",
"test": "bun test",
"lint": "eslint . ",
"build:browser": "bun build ./index.ts --outdir ./dist --target browser",
"build:minify": "bun build ./index.ts --outdir ./dist --target browser --minify",
"build:tsc": "tsc --outDir ./dist"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"bun-types": "latest",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"typescript": "^5.2.2"
}
}