-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.27 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@5minds/processcube_app_sdk",
"version": "8.2.3",
"description": "The SDK for ProcessCube Apps",
"type": "module",
"main": "build/common/index.cjs",
"module": "build/common/index.mjs",
"browser": "build/client/index.mjs",
"types": "common.d.ts",
"exports": {
".": {
"types": "./common.d.ts",
"require": "./build/common/index.cjs",
"default": "./build/common/index.mjs"
},
"./server": {
"types": "./server.d.ts",
"require": "./build/server/index.cjs",
"default": "./build/server/index.mjs"
},
"./client": {
"types": "./client.d.ts",
"require": "./build/client/index.cjs",
"default": "./build/client/index.mjs"
},
"./client/components/*.css": {
"import": "./build/client/components/*.css",
"require": "./build/client/components/*.css",
"default": "./build/client/components/*.css"
}
},
"scripts": {
"build": "concurrently -n=build:code,build:types,build:css \"NODE_ENV=development node build.js\" \"npm run build:types\" \"NODE_ENV=development node build-css.cjs\"",
"build:types": "tsc -p tsconfig.common.json --emitDeclarationOnly && concurrently -n=build:types:server,build:types:client \"tsc -p tsconfig.server.json --emitDeclarationOnly\" \"tsc -p tsconfig.client.json --emitDeclarationOnly\"",
"build:prod": "npm run clean && concurrently -n=build:prod:code,build:types,build:css \"NODE_ENV=production node build.js\" \"npm run build:types\" \"NODE_ENV=production node build-css.cjs\"",
"clean": "rm -rf build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "npm run build:prod",
"test": "echo \"No tests specified\"",
"watch": "NODE_ENV=development tsc -p tsconfig.common.json --emitDeclarationOnly && concurrently --kill-others -n=esbuild,tsc:server,tsc:common,tsc:client,build:css \"node build.js --watch\" \"tsc -p tsconfig.server.json --watch --preserveWatchOutput --emitDeclarationOnly\" \"tsc -p tsconfig.common.json --watch --preserveWatchOutput --emitDeclarationOnly\" \"tsc -p tsconfig.client.json --watch --preserveWatchOutput --emitDeclarationOnly\" \"NODE_ENV=development node build-css.cjs --watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/5minds/ProcessCube.App.SDK.git"
},
"files": [
"build/client",
"build/common",
"build/server",
"client.d.ts",
"common.d.ts",
"server.d.ts",
"!**.EMPTY"
],
"keywords": [
"SDK",
"ProcessCube",
"Next",
"Nextjs",
"React",
"5Minds"
],
"author": "ProcessCube UG",
"license": "MIT",
"bugs": {
"url": "https://www.processcube.io/support-1",
"email": "info@processcube.io"
},
"homepage": "https://docs.processcube.io/app-sdk",
"engines": {
"node": ">=24"
},
"sideEffects": [
"*.css"
],
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/lodash": "^4.17.20",
"@types/node": "^24",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/react-is": "19.2.0",
"@types/semver": "^7.7.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"esbuild-style-plugin": "^1.6.3",
"postcss-import": "^16.1.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"next": ">=15",
"next-auth": "~4.24.12",
"react": "^19.1.0"
},
"dependencies": {
"@5minds/processcube_engine_client": "6.2.1-develop-ca239b-mlju3ron",
"@5minds/processcube_engine_sdk": "7.1.2",
"@headlessui/react": "^2.2.1",
"@heroicons/react": "^2.2.0",
"@heroui/react": "^2.7.6",
"@monaco-editor/react": "^4.7.0",
"bpmn-js": "^18.8.0",
"chokidar": "^4.0.3",
"client-only": "^0.0.1",
"esbuild": "^0.25.2",
"isomorphic-dompurify": "^2.30.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"marked": "^16.4.1",
"only-server": "^0.0.1",
"openid-client": "^5.5.0",
"react-dom": "^19.1.0",
"react-is": "19.2.0",
"react-markdown": "^9.0.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"semver": "^7.7.1",
"uuid": "^13.0.0"
}
}