-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.36 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
100
{
"name": "@unconfig/repository",
"private": true,
"packageManager": "pnpm@9.4.0",
"description": "🚀 A modern, high-performance monorepo project built to simplify project config!",
"type": "module",
"keywords": [
"unconfig",
"monorepo",
"pnpm",
"turborepo",
"changesets",
"commitlint-config",
"eslint-config",
"lint-staged-config",
"prettier-config",
"simple-git-hooks-config",
"stylelint-config",
"ts-config",
"vitest"
],
"license": "MIT",
"homepage": "https://github.com/i7eo/unconfig#readme",
"bugs": {
"url": "https://github.com/i7eo/unconfig/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/i7eo/unconfig.git"
},
"author": "i7eo <admin@i7eo.com> (https://github.com/i7eo)",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "turbo run dev --parallel --continue",
"dev:document": "pnpm build:packages && turbo run dev --filter=\"./packages/github\" && turbo run dev --filter=\"./apps/document\"",
"build": "turbo run build",
"build:packages": "turbo run build --filter=\"./packages/**\"",
"build:contributor": "pnpm --filter=\"./packages/github\" build:contributor",
"build:document": "turbo run build --filter=\"./apps/document\"",
"test": "turbo run test",
"clean": "run-s \"clean:**\"",
"clean:workspace": "turbo run clean",
"clean:workspace:cache": "turbo run clean:cache",
"clean:root-cache": "rimraf .turbo && rimraf pnpm-lock.yaml && rimraf node_modules",
"lint": "turbo run lint",
"format": "turbo run lint:prettier",
"commit": "czg",
"changeset:init": "pnpm exec changeset init",
"changeset:generate": "changeset",
"changeset:changelog": "tsx ./scripts/changesets/changelog-generate.ts",
"changeset:version": "pnpm changeset:changelog && changeset version",
"changeset:publish": "changeset publish",
"changeset:pre:alpha": "changeset pre enter alpha",
"changeset:pre:beta": "changeset pre enter beta",
"changeset:pre:exit": "changeset pre exit",
"changeset:snapshot": "changeset version --snapshot"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^26.0.1",
"@unconfig/changeset-config": "workspace:*",
"@unconfig/changeset-workflow": "workspace:*",
"@unconfig/commitlint-config": "workspace:*",
"@unconfig/eslint-config": "workspace:*",
"@unconfig/lint-staged-config": "workspace:*",
"@unconfig/meta": "workspace:*",
"@unconfig/prettier-config": "workspace:*",
"@unconfig/simple-git-hooks-config": "workspace:*",
"@unconfig/stylelint-config": "workspace:*",
"@unconfig/ts-config": "workspace:*",
"@vitest/ui": "^4.1.9",
"jsdom": "^29.1.1",
"npm-run-all2": "^9.0.2",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"turbo": "^2.10.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"simple-git-hooks": {
"pre-commit": "NODE_OPTIONS=\"--import tsx\" pnpm exec lint-staged --concurrent false",
"commit-msg": "NODE_OPTIONS=\"--import tsx\" pnpm exec commitlint --edit $1"
},
"engines": {
"node": ">=24",
"pnpm": ">=9"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint",
"@algolia/client-search",
"search-insights"
]
}
}
}