forked from scalar/scalar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.04 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "root",
"type": "module",
"version": "1.0.0",
"private": true,
"engines": {
"pnpm": "^10.16.1"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/node": "catalog:*",
"lodash": "4.18.1",
"undici": "7.24.4"
}
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.33.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@playwright/test": "catalog:*",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "catalog:*",
"cross-env": "catalog:*",
"eslint": "^9.38.0",
"eslint-plugin-vue": "^9.31.0",
"knip": "6.3.1",
"lefthook": "^2.0.15",
"prettier": "3.8.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"remark-cli": "^12.0.1",
"remark-lint-no-dead-urls": "^2.0.1",
"remark-validate-links": "^13.1.0",
"shx": "catalog:*",
"tailwindcss": "catalog:*",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"turbo": "^2.8.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.53.0",
"typescript-language-server": "^5.1.3",
"tsx": "catalog:*",
"vitest": "catalog:*",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "catalog:*"
},
"scripts": {
"build": "turbo build",
"build:packages": "turbo --filter \"./packages/**\" --concurrency=100% build",
"build:integrations": "turbo --filter \"./integrations/**\" build",
"clean": "shx rm -rf \"**/dist\" \"**/.turbo\" \"**/.nuxt\" \"**/.next\" \"**/target\" \"**/node_modules\"",
"clean:build": "pnpm clean && pnpm install && pnpm build:packages",
"dev:docs": "npx @scalar/cli@latest project preview",
"format:check": "pnpm prettier --check . && biome format",
"format": "prettier --write . && biome format --write",
"lint:check": "biome lint --diagnostic-level=error",
"lint:check:dist-dts-aliases": "tsx ./tooling/scripts/check-dist-dts-aliases.ts",
"lint:vue": "pnpm eslint \"**/*.vue\"",
"lint:markdown": "remark --frail .",
"lint:knip": "cross-env NODE_ENV=test knip",
"lint:fix": "biome lint --write && pnpm eslint \"**/*.vue\" --fix",
"test": "turbo --filter './packages/**' --filter './integrations/**' --filter './projects/**' --filter './tooling/**' test",
"types:check": "turbo types:check",
"types:check:raw": "pnpm run -r --parallel types:check",
"types:build": "turbo types:build",
"renovate:validate": "pnpm dlx --package renovate renovate-config-validator",
"script": "pnpm --filter @scalar-internal/build-scripts start"
},
"remarkConfig": {
"plugins": [
"remark-validate-links",
[
"remark-lint-no-dead-urls",
{
"skipUrlPatterns": [
"http://localhost"
]
}
]
]
},
"exports": {
"./*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css",
"default": "./dist/*.css"
},
"./css/*.css": {
"import": "./dist/css/*.css",
"require": "./dist/css/*.css",
"default": "./dist/css/*.css"
}
}
}