-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.67 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.67 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
{
"name": "jitar-monorepo",
"version": "0.10.8",
"private": true,
"description": "Monorepo configuration for Jitar.",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*",
"tools/*"
],
"scripts": {
"build": "turbo run build --filter=jitar --filter=create-jitar --filter=@jitar/plugin*",
"build:all": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"review": "turbo run test lint",
"publish-packages": "turbo run build lint test && npm run publish-jitar && npm run publish-plugin && npm run publish-create-jitar",
"publish-jitar": "npm publish -workspace packages/jitar",
"publish-plugin": "npm publish -workspace packages/plugin-vite",
"publish-create-jitar": "npm publish -workspace packages/create-jitar",
"changelog": "auto-changelog --template changelog.hbs -p -u --commit-limit false --hide-empty-releases true",
"changelog-debug": "auto-changelog --template changelog.hbs -p --template json --output changelog-data.json",
"version": "npm version $VERSION --no-git-tag-version --workspaces --include-workspace-root=true"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@vitest/coverage-v8": "^4.1.0",
"auto-changelog": "^2.5.0",
"eslint": "^10.0.3",
"eslint-plugin-jitar": "0.0.1",
"rimraf": "^6.1.3",
"tslib": "^2.8.1",
"turbo": "^2.8.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.1.0"
},
"engines": {
"node": "^20.19.0 || >=22.9.0 || >=24"
},
"optionalDependencies": {
"@nrwl/nx-linux-x64-gnu": "^15.9.3"
},
"packageManager": "npm@11.6.2"
}