forked from adrai/flowchart.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "flowchart.ts",
"version": "3.0.1",
"description": "Flowchart support",
"keywords": [
"flowchart"
],
"homepage": "https://github.com/Mister-Hope/flowchart.ts",
"repository": {
"type": "git",
"url": "https://github.com/Mister-Hope/flowchart.ts.git"
},
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "[email protected]",
"url": "https://mister-hope.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/flowchart.d.ts",
"default": "./dist/flowchart.js"
}
},
"main": "./dist/flowchart.js",
"module": "./dist/flowchart.js",
"types": "./dist/flowchart.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin esbuild",
"clean": "rimraf dist/",
"dev": "vite dev",
"lint": "prettier --check --write . && eslint . --fix",
"lint:check": "prettier --check . && eslint . ",
"prepublish": "pnpm clean && pnpm build"
},
"dependencies": {
"@types/raphael": "^2.3.9",
"raphael": "^2.3.0",
"tslib": "^2.7.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@types/node": "22.5.0",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"esbuild": "0.23.1",
"eslint": "9.9.1",
"eslint-config-mister-hope": "0.2.3",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.21.1",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"typescript": "5.5.4",
"vite": "5.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.0.0 || >= 20"
}
}