-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "@island.is/pipes",
"version": "0.1.0",
"description": "Typescript utils for creating pipes using dagger.io",
"author": "Jon Arnarson <[email protected]>",
"type": "commonjs",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "node base/scripts/src/build-all.ts",
"lint": "node base/scripts/src/build-all.ts --action lint",
"test": "node base/scripts/src/build-all.ts --action test",
"postinstall": "NODE_OPTIONS=\"--no-warnings=ExperimentalWarning --experimental-loader=./loader.mjs\" yarn node base/scripts/src/post-install.ts"
},
"workspaces": [
"apps/*",
"ci",
"base/*",
"pipes-modules/*"
],
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
"@island.is/eslint-config": "workspace:*",
"@island.is/prettier-config": "workspace:*",
"@island.is/scripts": "workspace:*",
"@island.is/tsconfig": "workspace:*",
"@swc/core": "1.7.28",
"@types/semver": "7.5.8",
"@yarnpkg/types": "4.0.0",
"commitlint": "19.6.1",
"eslint": "8.57.0",
"express": "4.21.2",
"glob": "11.0.0",
"husky": "9.1.7",
"prettier": "3.1.1",
"semver": "7.6.3",
"typescript": "5.3.3",
"zod": "3.24.1"
},
"engines": {
"node": "20.5.1",
"yarn": "4.0.0-rc.47",
"npm": "please use yarn",
"pnpm": "please use yarn"
},
"resolutions": {
"[email protected]": "patch:rollup-plugin-dts@npm%3A6.0.2#~/.yarn/patches/rollup-plugin-dts-npm-6.0.2-090a0bc313.patch"
},
"peerDependencies": {
"@swc/core": "*"
}
}