-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
{
"name": "@jaspero/bpmn",
"description": "A BPMN UI published as a web component",
"version": "0.0.0-development",
"type": "module",
"main": "dist/lib/@jaspero/bpmn.js",
"scripts": {
"start": "npm run dev -s",
"dev": "concurrently \"npm run dev:demo\" \"npm run dev:lib\"",
"dev:demo": "vite --config vite.demo.config.ts",
"dev:lib": "vite build --watch",
"build": "vite build",
"build:demo": "vite build --config vite.demo.config.ts",
"preview": "vite preview --config vite.demo.config.ts",
"check": "svelte-check --tsconfig ./tsconfig.json",
"prepublishOnly": "npm run build -s",
"format": "prettier --plugin-search-dir . --write .",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "2.4.2",
"@tsconfig/svelte": "5.0.0",
"autoprefixer": "10.4.14",
"concurrently": "8.2.0",
"postcss": "8.4.31",
"prettier": "3.0.0",
"prettier-plugin-svelte": "3.0.0",
"semantic-release": "21.0.7",
"svelte": "4.1.1",
"svelte-check": "3.4.6",
"svelte-preprocess": "5.0.4",
"tailwindcss": "3.3.3",
"tslib": "2.6.0",
"typescript": "5.1.6",
"vite": "4.4.6",
"vite-plugin-static-copy": "0.17.0"
},
"license": "MIT",
"files": [
"dist/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/Jaspero/bpmn.git"
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@jaspero/modular": "1.17.0",
"@jaspero/utils": "1.12.0",
"@jaspero/web-components": "1.71.0",
"base32": "0.0.7",
"bpmn-js": "14.0.0",
"diagram-js": "12.3.0",
"min-dash": "4.1.1"
}
}