-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.2 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.2 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
{
"name": "@bottech/pulumix-root",
"private": true,
"devDependencies": {
"@types/node": "^24.9.2",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-workspaces": "^0.11.0",
"json-schema-to-typescript": "^15.0.4",
"prettier": "^3.6.2",
"ts-morph": "^27.0.2",
"tsdown": "^0.15.11",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.4"
},
"scripts": {
"build": "tsdown",
"postbuild": "cd packages/pulumix-schema && cp -r schemas dist/",
"check": "pnpm --recursive run check",
"clean": "pnpm --recursive run clean",
"fix": "pnpm exec eslint . --ext .js,.jsx,.ts,.tsx,.html,.vue --fix",
"link": "rm -rf node_modules/@pulumi",
"lint": "pnpm exec eslint . --ext .js,.jsx,.ts,.tsx,.html,.vue",
"test": "pnpm --recursive test",
"upgrade": "pnpm update --latest --recursive"
}
}