-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.66 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
{
"name": "@metricinsights/create-pp-dev",
"version": "1.1.3-beta.3",
"type": "module",
"description": "Portal Page Templates repository",
"bin": {
"create-pp-dev": "index.js"
},
"keywords": [
"portal",
"page",
"pp",
"metricinsights",
"MI",
"templates",
"create",
"dev"
],
"files": [
"index.js",
"template-*/**",
"mi-cursor-rules/**",
"dist",
"CHANGELOG.md",
"scripts/sync-npm-bundled-patches.mjs"
],
"main": "index.js",
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"postinstall": "node scripts/sync-npm-bundled-patches.mjs",
"dev": "unbuild --stub",
"build": "unbuild",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --report-unused-disable-directives --max-warnings 0 --fix",
"format": "prettier --write .",
"prepack": "node scripts/clean-templates.js",
"postbuild": "npm pack && node scripts/postbuild.js",
"typecheck": "tsc --noEmit",
"test": "npm run build && playwright test",
"prepublishOnly": "npm run build",
"version": "npm version --commit-hooks false --git-tag-version false",
"release": "semantic-release"
},
"author": "Serhii Shpak",
"repository": {
"type": "git",
"url": "git+https://github.com/mi-examples/create-pp-dev.git"
},
"bugs": {
"url": "https://github.com/mi-examples/create-pp-dev/issues"
},
"homepage": "https://github.com/mi-examples/create-pp-dev#readme",
"license": "ISC",
"overrides": {
"@xmldom/xmldom": "^0.8.13",
"axios": "^1.18.1",
"body-parser": "^2.3.0",
"brace-expansion": "^5.0.9",
"minimatch": "^10.2.2",
"flatted": "^3.4.2",
"undici": "^7.28.0",
"picomatch": "^4.0.4",
"postcss": "^8.5.26",
"ip-address": "^10.2.0",
"qs": "^6.15.2",
"npm": "^12.0.2",
"tar": "^7.5.22",
"immutable": "^5.1.9",
"svgo": "^4.0.2"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@metricinsights/pp-dev": "^1.2.2",
"@playwright/test": "^1.60.0",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/cross-spawn": "^6.0.6",
"@types/minimist": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"unbuild": "^3.6.1"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"cross-spawn": "^7.0.6",
"kolorist": "^1.8.0",
"minimist": "^1.2.8"
}
}