-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.6 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
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
{
"name": "fusion-framework",
"version": "1.0.0-beta.0",
"description": "Framework for Fusion Eco System",
"private": true,
"type": "module",
"engines": {
"node": "^22||^20",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"install": "pnpm -r exec genversion --es6 --semi src/version.ts",
"install:clean": "pnpm clean && pnpm install",
"clean": "pnpm clean:build && pnpm clean:npm",
"clean:npm": "pnpm -r exec rimraf node_modules && pnpm exec rimraf node_modules",
"clean:build": "pnpm -r exec rimraf dist tmp .cache .turbo tsconfig.tsbuildinfo",
"build": "turbo build --filter=!@equinor/fusion-framework-docs",
"build:cli": "turbo build --filter @equinor/fusion-framework-cli... build",
"build:packages": "turbo build --filter './packages/**' build",
"build:cookbooks": "turbo build --filter './cookbooks/**' build",
"build:docs": "turbo build --filter '@equinor/fusion-framework-docs' build",
"build:affected": "turbo build --filter=...[origin/main] build",
"build:clean": "pnpm clean:build && pnpm build --force",
"check": "biome check",
"check:errors": "biome check --diagnostic-level=error",
"lint": "biome lint",
"lint:staged": "biome lint --staged",
"format": "biome format",
"format:staged": "biome format --staged",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:build": "docker build -f alpine.Dockerfile -t fusion_framework:test .",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "pnpm changeset tag && pnpm publish -r"
},
"repository": "git+https://github.com/equinor/fusion-framework.git",
"keywords": [
"react",
"fusion",
"components"
],
"author": "Odin Thomas Rochmann <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/equinor/fusion-framework/issues"
},
"homepage": "https://github.com/equinor/fusion-framwork#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.2",
"@vitest/coverage-v8": "^2.0.1",
"genversion": "^3.1.1",
"happy-dom": "^17.0.3",
"lerna-update-wizard": "^1.1.2",
"rimraf": "^6.0.0",
"tslib": "^2.6.1",
"turbo": "^2.0.6",
"typescript": "^5.7.3",
"vitest": "^2.0.5",
"vitest-github-actions-reporter": "^0.11.1"
},
"peerDependencies": {
"typescript": ">=4.8"
},
"workspaces": {
"packages": [
"packages/**",
"cookbooks/*",
"vue-press"
]
}
}