-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.28 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
{
"name": "@micro-os-plus/startup",
"version": "6.0.0",
"description": "A source code library with the µOS++ startup code for bare-metal platforms",
"keywords": [
"xpack",
"c++",
"micro-os-plus",
"startup"
],
"license": "MIT",
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micro-os-plus/startup.git"
},
"homepage": "https://micro-os-plus.github.io/startup/",
"bugs": {
"url": "https://github.com/micro-os-plus/startup/issues"
},
"$dependenciesUrls": {
"del-cli": "https://www.npmjs.com/package/del-cli",
"json": "https://www.npmjs.com/package/json",
"liquidjs": "https://www.npmjs.com/package/liquidjs",
"glob": "https://www.npmjs.com/package/glob",
"json5": "https://www.npmjs.com/package/json5",
"jsonc-parser": "https://www.npmjs.com/package/jsonc-parser"
},
"dependencies": {},
"devDependencies": {
"@xpack/npm-packages-helper": "github:xpack/npm-packages-helper",
"del-cli": "^7.0.0",
"json": "^11.0.0",
"liquidjs": "^10.25.0",
"glob": "^13.0.6",
"json5": "^2.2.3",
"jsonc-parser": "^3.3.1"
},
"scripts": {
"generate-top-commons": "node node_modules/@xpack/npm-packages-helper/maintenance-scripts/generate-top-commons.mjs --micro-os-plus",
"npm-install": "npm install",
"npm-link-helpers": "npm link @xpack/npm-packages-helper",
"npm-outdated": "npm outdated",
"npm-ci": "npm ci",
"npm-pack": "npm pack",
"npm-link": "npm link",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"git-pull-helper": "git -C ${HOME}/Work/micro-os-plus/build-helper-xpack.git pull",
"deep-clean": "del-cli node_modules package-lock.json *.tgz",
"postversion": "git push origin --all && git push origin --tags"
},
"xpack": {
"minimumXpmRequired": "0.20.8",
"devDependencies": {
"@xpack-dev-tools/clang": "21.1.8-1.1"
},
"actions": {
"clang-format": "node scripts/clang-format.mjs",
"cmake-format": "node scripts/cmake-format.mjs",
"jsonc-format": "node scripts/jsonc-format.mjs",
"xcdl-export": "node scripts/xcdl-export.mjs xcdl-package.json*"
}
},
"engines": {
"node": ">=20.0"
}
}