-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
82 lines (82 loc) · 2.21 KB
/
package.json
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
{
"name": "isolate-package",
"version": "1.23.0",
"description": "Isolate a monorepo package with its shared dependencies to form a self-contained directory, compatible with Firebase deploy",
"author": "Thijs Koerselman",
"license": "MIT",
"keywords": [
"monorepo",
"turborepo",
"workspaces",
"workspace",
"isolate",
"package",
"deploy",
"firebase",
"ci",
"docker",
"prune",
"lockfile"
],
"repository": {
"type": "git",
"url": "git+https://github.com/0x80/isolate-package.git"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": "./dist/index.mjs",
"files": [
"dist",
"docs"
],
"bin": {
"isolate": "dist/isolate-bin.mjs"
},
"scripts": {
"build": "tsup-node",
"dev": "tsup-node --watch",
"test": "vitest",
"format": "prettier --write .",
"lint": "eslint . --max-warnings 0",
"lint:format": "prettier --check .",
"compile": "tsc --noEmit",
"prepare": "pnpm run compile && pnpm run build"
},
"dependencies": {
"@npmcli/arborist": "^7.5.4",
"@npmcli/config": "^9.0.0",
"@pnpm/logger": "^5.2.0",
"@pnpm/types": "^9.4.2",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"get-tsconfig": "^4.8.1",
"glob": "^10.4.5",
"outdent": "^0.8.0",
"pnpm_lockfile_file_v8": "npm:@pnpm/lockfile-file@8",
"pnpm_lockfile_file_v9": "npm:@pnpm/lockfile-file@9",
"pnpm_prune_lockfile_v8": "npm:@pnpm/prune-lockfile@5",
"pnpm_prune_lockfile_v9": "npm:@pnpm/prune-lockfile@6",
"remeda": "^2.17.3",
"rename-overwrite": "^5.0.4",
"source-map-support": "^0.5.21",
"strip-json-comments": "^5.0.1",
"tar-fs": "^3.0.6",
"type-fest": "^4.27.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.1",
"@types/npmcli__config": "^6.0.3",
"@types/source-map-support": "^0.5.10",
"@types/tar-fs": "^2.0.4",
"eslint": "^8.57.1",
"eslint-config-0x80": "^0.0.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]+sha256.bdfc9a7b372b5c462176993e586492603e20da5864d2f8881edc2462482c76fa"
}