-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.93 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
{
"name": "aio-commerce-sdk",
"private": true,
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20 <=24",
"pnpm": ">=10"
},
"scripts": {
"clean:all": "pnpm clean:dist && pnpm clean:modules && pnpm clean:tgz pnpm clean:turbo",
"clean:dist": "pnpx rimraf './**/dist' './**/.build' --glob",
"clean:modules": "pnpx rimraf './**/node_modules' --glob",
"clean:tgz": "pnpx rimraf './**/*.tgz' --glob",
"clean:turbo": "pnpx rimraf './**/.turbo' --glob",
"assist": "turbo run assist",
"assist:apply": "turbo run assist:apply",
"build": "turbo run build",
"check:ci": "turbo run check:ci",
"docs": "turbo run docs",
"format": "turbo run format",
"format:markdown": "turbo run format:markdown",
"format:check": "turbo run format:check",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"pack": "turbo run pack",
"prepare": "husky",
"publint": "turbo run publint",
"test": "turbo test",
"turbo": "turbo",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@turbo/gen": "^2.5.4",
"@types/node": "^24.0.4",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"husky": "^9.1.7",
"prettier": "catalog:",
"publint": "^0.3.15",
"tsdown": "^0.20.3",
"turbo": "^2.5.4",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"ultracite": "^7.0.0",
"vitest": "^4.0.0"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
],
"*.md": [
"prettier --no-error-on-unmatched-pattern --write '**/*.md' \"!**/{CODE_OF_CONDUCT.md,COPYRIGHT,LICENSE,SECURITY.md,CONTRIBUTING.md}\""
],
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}