-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.61 KB
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
{
"name": "slidev-addon-dmn",
"version": "1.2.0",
"description": "Display DMN decision tables and DRD diagrams in Slidev presentations",
"type": "module",
"scripts": {
"dev": "portless run sh -c 'npx slidev example.md --port $PORT --remote --bind 127.0.0.1'",
"build": "slidev build example.md",
"export": "slidev export example.md",
"screenshot": "slidev export example.md --format png",
"build:pages": "slidev build example.md --base /slidev-addon-dmn/ --out dist",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "Marco Schäck (https://github.com/emaarco)",
"license": "MIT",
"dependencies": {
"@bpmn-io/properties-panel": "3.44.1",
"camunda-dmn-moddle": "1.3.1",
"dmn-js": "17.8.1",
"dmn-js-properties-panel": "3.11.1"
},
"devDependencies": {
"@slidev/cli": "52.16.0",
"@slidev/theme-default": "0.25.0",
"@vitejs/plugin-vue": "6.0.7",
"@vue/test-utils": "2.4.11",
"jsdom": "29.1.1",
"playwright-chromium": "1.60.0",
"vitest": "4.1.8"
},
"keywords": [
"slidev",
"slidev-addon",
"dmn",
"dmn-js",
"bpmn.io",
"diagram",
"decision",
"decision-table",
"drd"
],
"files": [
"components",
"composables",
"engines",
"internal",
"vite.config.ts"
],
"sideEffects": [
"**/*.css"
],
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emaarco/slidev-addon-dmn.git"
},
"bugs": {
"url": "https://github.com/emaarco/slidev-addon-dmn/issues"
},
"homepage": "https://github.com/emaarco/slidev-addon-dmn#readme"
}