-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.97 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.97 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
{
"name": "@repixelcorp/hyper-pwt",
"version": "0.3.2",
"description": "A faster, more modern, superior alternative for Mendix PWT.",
"repository": {
"type": "git",
"url": "git+https://github.com/repixelcorp/hyper-pwt.git"
},
"scripts": {
"build": "rslib build",
"watch": "rslib build --watch",
"start": "pnpm build && node ./dist/cli.js",
"package": "pnpm build && pnpm pack",
"prepare": "husky",
"lint": "biome check",
"lint:fix": "biome check --write"
},
"lint-staged": {
"*": "biome check --write"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./src/configurations/typescript/tsconfig.base": "./src/configurations/typescript/tsconfig.base.json"
},
"bin": {
"hyper-pwt": "dist/cli.js"
},
"keywords": [
"mendix",
"pwt",
"mendix-pwt",
"pluggable-widgets-tools"
],
"author": "Repixel Co., Ltd.",
"license": "MIT",
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67",
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@rslib/core": "0.12.2",
"@types/node": "22.17.2",
"husky": "9.1.7",
"type-fest": "4.41.0",
"typescript": "5.9.2"
},
"dependencies": {
"@vitejs/plugin-react": "5.0.2",
"chalk": "5.6.0",
"commander": "14.0.0",
"fast-xml-parser": "5.2.5",
"mendix": "10.24.77222",
"rollup-plugin-typescript2": "0.36.0",
"vite": "npm:rolldown-vite@7.1.5",
"zip-a-folder": "3.1.9"
},
"files": [
"dist/**/*",
"package.json",
"LICENSE",
"src/configurations/hotReload/**/*",
"src/configurations/typescript/**/*",
"custom_widget.xsd"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}