-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.89 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
101
102
103
104
105
106
107
{
"name": "isolate-package",
"version": "1.35.1",
"description": "Isolate monorepo packages to form a self-contained deployable unit",
"keywords": [
"ci",
"deploy",
"docker",
"firebase",
"isolate",
"lockfile",
"monorepo",
"package",
"prune",
"turborepo",
"workspace",
"workspaces"
],
"license": "MIT",
"author": "Thijs Koerselman",
"repository": {
"type": "git",
"url": "git+https://github.com/0x80/isolate-package.git"
},
"bin": {
"isolate": "./dist/isolate-bin.mjs",
"isolate-package": "./dist/isolate-bin.mjs"
},
"files": [
"src",
"dist"
],
"type": "module",
"types": "./dist/index.d.mts",
"imports": {
"#/*": "./src/*"
},
"exports": {
".": "./dist/index.mjs",
"./isolate-bin": "./dist/isolate-bin.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"format": "oxfmt",
"lint": "oxlint -c .oxlintrc.json --import-plugin --type-aware",
"check-format": "oxfmt --check",
"check-types": "tsc --noEmit",
"prepare": "(husky || true) && pnpm check-types && pnpm build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@npmcli/arborist": "^9.4.2",
"@npmcli/config": "^10.8.1",
"@pnpm/logger": "^1100.0.0",
"@pnpm/types": "^1001.3.0",
"consola": "^3.4.2",
"detect-monorepo": "^1.0.0",
"fs-extra": "^11.3.4",
"get-or-throw": "^3.0.1",
"get-tsconfig": "^4.13.7",
"glob": "^13.0.6",
"meow": "^14.1.0",
"outdent": "^0.8.0",
"pnpm_lockfile_file_v8": "npm:@pnpm/lockfile-file@8",
"pnpm_lockfile_file_v9": "npm:@pnpm/lockfile-file@9.0.0",
"pnpm_prune_lockfile_v8": "npm:@pnpm/prune-lockfile@5",
"pnpm_prune_lockfile_v9": "npm:@pnpm/prune-lockfile@6.0.0",
"remeda": "^2.33.7",
"source-map-support": "^0.5.21",
"strip-json-comments": "^5.0.3",
"tar-fs": "^3.1.2",
"yaml": "^2.9.0"
},
"devDependencies": {
"@codecompose/typescript-config": "^3.2.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.7.0",
"@types/npmcli__config": "^6.0.3",
"@types/source-map-support": "^0.5.10",
"@types/tar-fs": "^2.0.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.22.1",
"tsdown": "0.22.0",
"typescript": "6.0.3",
"vite": "^8.0.12",
"vitepress": "^1.6.3",
"vitest": "^4.1.6"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs}": [
"oxfmt",
"oxlint -c .oxlintrc.json --import-plugin --type-aware"
]
},
"engines": {
"node": ">=22.22.1"
},
"packageManager": "pnpm@11.1.3+sha512.c85357fe17ca12dd23dd7071822666dfd7e3cb76fe214e3370b5ea2fb34f2a231185509b63e717f3cd0acb38dd3f8d82bcd5e8172400ae678b70ea4fbed0896d"
}