-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 4.03 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 4.03 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
{
"name": "@n8d/ice",
"version": "0.0.1",
"type": "module",
"description": "Contains all built chain an tool for hTWOo",
"workspaces": [
"ice-*"
],
"keywords": [
"Ice",
"Build",
"Chain",
"Tools",
"hTWOo"
],
"homepage": "https://github.com/n8design/ice#readme",
"bugs": {
"url": "https://github.com/n8design/ice/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n8design/ice.git"
},
"license": "MIT",
"author": "Stefan Bauer",
"scripts": {
"// Build operations": "",
"build": "nx run-many --target=build --all",
"build:ice-build": "nx build ice-build",
"build:ice-hotreloader": "nx build ice-hotreloader",
"// Lint operations": "",
"lint": "nx run-many --target=lint --all",
"lint:ice-build": "nx lint ice-build",
"lint:ice-hotreloader": "nx lint ice-hotreloader",
"// Test operations": "",
"pretest:release": "node scripts/tests/mkdir.cjs",
"test": "nx run-many --target=test --all",
"test:ice-build": "nx test ice-build",
"test:ice-hotreloader": "nx test ice-hotreloader",
"test:release": "cross-env NODE_ENV=test vitest run",
"test:release:safety": "./test-release-process.sh",
"// Release operations": "",
"version": "node scripts/update-version.cjs",
"release:check": "npm run test:release:safety",
"release:checklist": "bash -c 'echo \"📋 Release Checklist:\\n✅ Make sure you are on main branch\\n✅ git pull\\n✅ git status should be clean\\n✅ npm test\\n✅ Run: npm run release:alpha:ice-build OR npm run release:stable:ice-build -- patch\"'",
"// CI release operations": "",
"ci:release": "npm run test && npm run release:check",
"ci:release:ice-build": "npm run test:ice-build",
"ci:release:ice-hotreloader": "npm run test:ice-hotreloader",
"// Alpha releases": "",
"release:alpha:ice-build": "npm run ci:release:ice-build && nx release version --projects=ice-build --specifier=prerelease --preid=alpha && npm run version && node scripts/finalize-release.cjs ice-build",
"release:alpha:ice-hotreloader": "npm run ci:release:ice-hotreloader && nx release version --projects=ice-hotreloader --specifier=prerelease --preid=alpha && npm run version && node scripts/finalize-release.cjs ice-hotreloader",
"// Stable releases": "",
"release:stable:ice-build": "npm run ci:release:ice-build && nx release version --projects=ice-build --specifier=$npm_config_releaseType && npm run version && node scripts/finalize-release.cjs ice-build",
"release:stable:ice-hotreloader": "npm run ci:release:ice-hotreloader && nx release version --projects=ice-hotreloader --specifier=$npm_config_releaseType && npm run version && node scripts/finalize-release.cjs ice-hotreloader",
"// Changelog operations": "",
"changelog:ice-build": "conventional-changelog -p angular -i ice-build/CHANGELOG.md -s --commit-path ice-build",
"changelog:ice-hotreloader": "conventional-changelog -p angular -i ice-hotreloader/CHANGELOG.md -s --commit-path ice-hotreloader",
"// Dry run operations": "",
"dry-run:ice-build": "node scripts/release-dry-run.cjs --package=ice-build --type=patch",
"dry-run:ice-build:alpha": "node scripts/release-dry-run.cjs --package=ice-build --type=alpha",
"dry-run:ice-hotreloader": "node scripts/release-dry-run.cjs --package=ice-hotreloader --type=patch",
"dry-run:ice-hotreloader:alpha": "node scripts/release-dry-run.cjs --package=ice-hotreloader --type=alpha"
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@nx/js": "^22.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"semantic-release-monorepo": "^8.0.2",
"typescript-eslint": "^8.48.0",
"vitest": "^3.2.4"
},
"overrides": {
"@conventional-changelog/git-client": "^2.5.1"
},
"resolutions": {
"@conventional-changelog/git-client": "^2.5.1"
}
}