-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.44 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
{
"name": "@altano/npm-packages",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/altano/npm-packages.git"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"check:dependencies": "syncpack lint",
"check:dependencies:fix": "syncpack fix-mismatches",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev --no-cache --parallel --continue",
"format": "turbo run format",
"lint": "eslint --no-error-on-unmatched-pattern *.json *.ts",
"lint:inspect": "pnpm dlx @eslint/config-inspector@latest",
"preinstall": "npx only-allow pnpm",
"prep": "turbo run build test lint format check:dependencies check:types check:exports",
"release": "turbo run build && changeset publish",
"test": "turbo run test",
"update": "pnpm update --latest --interactive",
"version-packages": "changeset version"
},
"devDependencies": {
"@altano/eslint-config": "workspace:*",
"@altano/tsconfig": "workspace:*",
"@changesets/cli": "^2.27.9",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"syncpack": "^13.0.0",
"tsup": "^8.3.5",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"pnpm": {
"supportedArchitectures": {
"os": [
"current",
"linux"
],
"cpu": [
"current",
"x64"
]
}
}
}