-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
{
"name": "pulumi-helpers",
"private": true,
"license": "MIT",
"author": {
"name": "bingtsingw",
"email": "bingtsingw@gmail.com",
"url": "https://github.com/bingtsingw"
},
"scripts": {
"build": "turbo run build",
"changeset-add": "changeset add",
"changeset-publish": "npm run check-publish && changeset publish",
"changeset-version": "changeset version",
"check-mono": "sherif",
"check-publish": "npm run build && npm run format && npm run lint:js && npm run check-type",
"check-type": "turbo run check-type",
"clean": "del **/dist **/.build **/.swc **/.malagu **/.turbo **/node_modules !node_modules **/.eslintcache",
"commit": "cz",
"dev": "turbo run dev",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint:js": "turbo run lint:js",
"lint:js:fix": "turbo run lint:js:fix",
"prepare": "simple-git-hooks",
"test": "turbo run test"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,md,json}": "prettier --check",
"**/*.{js,jsx,ts,tsx}": "eslint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "@xstools-dev/prettier-config/base",
"devDependencies": {
"@types/bun": "1.3.8",
"@types/node": "24.10.10",
"@xstools-dev/mix": "0.19.2",
"typescript": "5.8.3"
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"neverBuiltDependencies": []
}
}