-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.91 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
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
{
"name": "@keload/node-red-dxp",
"version": "1.23.0",
"description": "",
"type": "module",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"format": "pnpm biome format",
"lint": "pnpm biome lint",
"lint:check": "pnpm biome check",
"release": "pnpm release-it",
"release:test": "pnpm release-it --dry-run",
"docs:dev": "./build-docs.sh && vitepress dev docs",
"docs:build": "./build-docs.sh && vitepress build docs",
"docs:preview": "vitepress preview docs",
"test:unit": "vitest"
},
"publishConfig": {
"access": "public"
},
"bin": {
"node-red-dxp": "./dist/cli/index.cjs"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./editor": {
"import": "./dist/editor/index.js",
"require": "./dist/editor/index.cjs"
},
"./editor/dom-helper": {
"import": "./dist/editor/dom-helper/index.js",
"require": "./dist/editor/dom-helper/index.cjs"
},
"./builder": {
"import": "./dist/builder/index.js",
"require": "./dist/builder/index.cjs"
},
"./utils": {
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.cjs"
},
"./utils/controller": {
"import": "./dist/utils/controller.js",
"require": "./dist/utils/controller.cjs"
},
"./package.json": "./package.json"
},
"keywords": [],
"author": "Clément BERARD <contact@berard.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clement-berard/node-red-dxp.git"
},
"bugs": {
"url": "https://github.com/clement-berard/node-red-dxp/issues"
},
"homepage": "https://github.com/clement-berard/node-red-dxp",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@release-it/conventional-changelog": "10.0.0",
"release-it": "18.1.1",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typedoc": "0.27.6",
"typedoc-plugin-markdown": "4.4.1",
"typescript": "5.7.3",
"vitepress": "1.5.0",
"vitepress-plugin-npm-commands": "^0.6.0",
"vitepress-plugin-tabs": "^0.5.0",
"vitest": "2.1.8"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "7.0.2",
"@types/html-minifier-terser": "7.0.2",
"@types/jquery": "3.5.32",
"@types/jqueryui": "1.12.23",
"@types/node-red": "1.3.5",
"@types/prettyjson": "0.0.33",
"autoprefixer": "10.4.20",
"browser-sync": "3.0.3",
"chokidar": "4.0.3",
"commander": "13.1.0",
"consola": "3.3.3",
"cosmiconfig": "9.0.0",
"cssnano": "7.0.6",
"esbuild": "0.24.2",
"fast-glob": "3.3.3",
"handlebars": "4.7.8",
"html-minifier-terser": "7.2.0",
"mdx-to-md": "0.3.2",
"merge-anything": "6.0.2",
"nodemon": "3.1.9",
"ora": "8.1.1",
"postcss": "8.5.1",
"prettyjson": "1.2.5",
"pug": "3.0.3",
"radash": "12.1.0",
"sass": "1.83.1",
"tailwindcss": "3.4.17"
},
"files": [
"dist"
]
}