-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.05 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.05 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
{
"type": "module",
"private": true,
"name": "opsen",
"description": "Runtime-agnostic infrastructure platform for Pulumi",
"license": "MIT",
"packageManager": "pnpm@10.18.0",
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">= 10.12.1",
"node": ">= 22.0.0"
},
"scripts": {
"prepare": "pnpm husky",
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ts:check": "tsc --build",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:all": "vitest run --config vitest.all.config.ts",
"test:watch": "vitest",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish --provenance",
"commit": "cz"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,jsonc,json5,md}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"onlyBuiltDependencies": [
"cpu-features",
"ssh2"
],
"overrides": {
"flatted": ">=3.3.4",
"minimatch": ">=3.1.5",
"typescript": "~5.8.3",
"@pulumi/pulumi": "^3.226.0"
}
},
"devDependencies": {
"@changesets/cli": "^2.28.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.29.0",
"@eslint/json": "^1.1.0",
"@eslint/markdown": "^7.5.1",
"@tsconfig/node22": "^22.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vitest": "^3.1.4"
}
}