forked from framer/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.5 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.5 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
{
"name": "plugins",
"packageManager": "yarn@4.9.4",
"private": true,
"license": "MIT",
"workspaces": [
"starters/*",
"packages/*",
"plugins/*"
],
"scripts": {
"check": "turbo run --continue check-biome check-eslint check-prettier check-svelte check-typescript check-vitest",
"dev": "turbo run dev --concurrency=40",
"fix-biome": "turbo run --continue check-biome -- --write",
"fix-eslint": "turbo run --continue check-eslint -- --fix",
"build": "turbo run build",
"g:build": "cd $INIT_CWD && run g:vite build",
"g:check-biome": "biome check $INIT_CWD",
"g:check-eslint": "cd $INIT_CWD && DEBUG='eslint:eslint' eslint --report-unused-disable-directives-severity error .",
"g:check-typescript": "tsc --project $INIT_CWD",
"g:check-vitest": "cd $INIT_CWD && vitest run",
"g:dev": "cd $INIT_CWD && run g:vite",
"g:preview": "cd $INIT_CWD && run g:vite preview",
"g:vite": "cd $INIT_CWD && NODE_OPTIONS='--no-warnings=ExperimentalWarning' vite --config ${VITE_CONFIG_PATH:-$PROJECT_CWD/packages/vite-config/src/index.ts}",
"preview": "turbo run preview --concurrency=40"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@framer/eslint-config": "workspace:*",
"@framer/vite-config": "workspace:*",
"eslint": "^9.35.0",
"jiti": "^2.5.1",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vite": "^7.1.5"
}
}