forked from dmno-dev/varlock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/core.git"
},
"workspaces": [
"packages/**/*",
"!packages/**/test/**"
],
"scripts": {
"build": "turbo build --filter=\"!smoke-test-*\"",
"build:libs": "bun run build --filter=\"!@varlock/website\" --filter=\"!smoke-test-*\"",
"test:ci": "turbo test:ci --filter=\"!smoke-test-*\"",
"smoke-test": "cd smoke-tests && bun run test",
"check": "bun run lint && bun run build:libs && bun run test:ci",
"dev": "turbo run dev --concurrency=40 --parallel --filter=\"!smoke-test-*\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changeset:add": "changeset add",
"changeset:empty": "changeset add --empty",
"changeset:version": "changeset version && bun run lint:fix",
"changeset:publish": "bun run build:libs && bun run scripts/resolve-workspace-versions.ts && changeset publish",
"release:create-missing-tags": "node scripts/create-missing-release-tags.js"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@varlock/changeset-changelog": "workspace:*",
"eslint": "^10.0.2",
"eslint-plugin-es-x": "^9.5.0",
"eslint-plugin-fix-disabled-rules": "^0.0.2",
"eslint-plugin-jsonc": "^3.1.1",
"eslint-plugin-n": "^17.24.0",
"eslint-stylistic-airbnb": "^2.0.1",
"globals": "^17.3.0",
"turbo": "^2.8.12",
"typescript": "catalog:",
"typescript-eslint": "^8.56.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1"
},
"packageManager": "bun@1.3.9",
"engines": {
"node": ">=22"
},
"overrides": {
"form-data": "4.0.5",
"punycode": "npm:punycode@^2.3.1"
},
"catalog": {
"@sindresorhus/is": "^7.2.0",
"@types/node": "25.3.2",
"ansis": "^4.2.0",
"ky": "^1.14.3",
"outdent": "^0.8.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"patchedDependencies": {
"@changesets/assemble-release-plan@6.0.9": "patches/@changesets%2Fassemble-release-plan@6.0.9.patch"
}
}