-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.46 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.46 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/alextim/astro-lib.git"
},
"workspaces": [
"packages/**/*",
"examples/**/*",
"scripts"
],
"scripts": {
"changeset": "changeset",
"release": "pnpm run build && changeset publish",
"build": "turbo run build --no-deps --scope=astro-robots-txt --scope=astro-webmanifest --scope=astro-sitemap",
"build:examples": "turbo run build --concurrency=1 --scope=\"@example/*\"",
"build:examples:robots-txt": "turbo run build --concurrency=1 --scope=\"@example/robots-txt*\"",
"build:examples:webmanifest/advanced": "turbo run build --scope=@example/webmanifest-advanced",
"build:examples:robots-txt/advanced": "turbo run build --scope=@example/robots-txt-advanced",
"build:examples:sitemap": "turbo run build --scope=\"@example/sitemap*\"",
"build:sitemap": "turbo run build --scope=@example/sitemap-advanced",
"typecheck": "turbo run typecheck --no-deps --concurrency=1",
"lint": "eslint . --ext .ts,.js,.mjs,.cjs",
"lint:fix": "eslint . --fix --ext .ts,.js,.mjs,.cjs",
"format": "prettier -w .",
"prettier:check": "prettier --check .",
"test": "turbo run test --no-deps --concurrency=1",
"coverage": "turbo run coverage --no-deps --concurrency=1",
"test:pub": "turbo run test:pub --no-deps",
"prepare": "husky install",
"clean:all": "rimraf ./**/turbo-build.log ./**/dist ./**/.pnpm-debug.log ./**/.turbo ./**/coverage ./**/pnpm-lock.yaml ./**/node_modules",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"preinstall": "npx only-allow pnpm",
"ncu": "ncu -u --deep -x rimraf,sharp"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"astro": "^3.0.11",
"c8": "^8.0.1",
"commitlint": "^17.7.1",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "5.0.1",
"turbo": "^1.10.13",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
},
"engines": {
"pnpm": ">=7.9.5",
"node": ">=16.12.0"
},
"packageManager": "pnpm@7.12.2"
}