-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 3.63 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
{
"name": "@oscd-plugins/monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"//====== FORMAT & LINT ======//": "",
"biome:check": "biome check .",
"biome:fix": "biome check . --write",
"//====== PREPARE ======//": "",
"prepare": "husky install",
"//====== LOCAL DEPENDENCIES INSTALL ======//": "",
"install:core:api": "pnpm --filter @oscd-plugins/core-api i --frozen-lockfile",
"install:core:ui:svelte": "pnpm --filter @oscd-plugins/core-ui-svelte i --frozen-lockfile",
"install:core:standard": "pnpm --filter @oscd-plugins/core-standard i --frozen-lockfile",
"install:core:legacy": "pnpm --filter @oscd-plugins/core i --frozen-lockfile",
"install:ui:legacy": "pnpm --filter @oscd-plugins/ui i --frozen-lockfile",
"install:uilib:legacy": "pnpm --filter @oscd-plugins/uilib i --frozen-lockfile",
"install:dependencies": "pnpm install:core:api && pnpm install:core:ui:svelte && pnpm install:core:standard && pnpm install:core:legacy && pnpm install:ui:legacy && pnpm install:uilib:legacy",
"//====== LOCAL DEPENDENCIES BUILD ======//": "",
"build:core:api": "pnpm --filter @oscd-plugins/core-api build",
"build:core:ui:svelte": "pnpm --filter @oscd-plugins/core-ui-svelte build",
"build:core:standard": "pnpm --filter @oscd-plugins/core-standard build",
"build:core:legacy": "pnpm --filter @oscd-plugins/core build",
"build:dependencies": "pnpm build:core:standard && pnpm build:core:api && pnpm build:core:ui:svelte && pnpm build:core:legacy",
"//====== LOCAL DEPENDENCIES BUILD & INSTALL ======//": "",
"install:build:dependencies": "pnpm install:dependencies && pnpm build:dependencies",
"//====== STORYBOOK ======//": "",
"storybook": "pnpm install:core:ui:svelte && pnpm --filter @oscd-plugins/core-ui-svelte storybook",
"//====== CORE DEV MODE ======//": "",
"dev:core:api": "pnpm install:core:api && pnpm --filter @oscd-plugins/core-api build:watch",
"dev:core:ui:svelte": "pnpm install:core:ui:svelte && pnpm --filter @oscd-plugins/core-ui-svelte build:watch",
"dev:core:standard": "pnpm install:core:standard && pnpm --filter @oscd-plugins/core-standard build:watch",
"dev:core:legacy": "pnpm install:core:legacy && pnpm --filter @oscd-plugins/core dev",
"//====== PLUGIN INSTALL ======//": "",
"install:auto-doc": "pnpm install:build:dependencies && pnpm --filter @oscd-plugins/auto-doc i --frozen-lockfile",
"install:io-center": "pnpm install:build:dependencies && pnpm --filter @oscd-plugins/io-center i --frozen-lockfile",
"install:type-designer": "pnpm install:build:dependencies && pnpm --filter @oscd-plugins/type-designer i --frozen-lockfile",
"//====== PLUGIN STAND ALONE MODE ======//": "",
"dev:auto-doc": "pnpm install:auto-doc && pnpm --filter @oscd-plugins/auto-doc dev",
"dev:io-center": "pnpm install:io-center && pnpm --filter @oscd-plugins/io-center dev",
"dev:type-designer": "pnpm install:type-designer && pnpm --filter @oscd-plugins/type-designer dev",
"//====== PLUGIN INTEGRATED MODE ======//": "",
"dev:integrated:auto-doc": "pnpm install:auto-doc && pnpm --filter @oscd-plugins/auto-doc build:watch",
"dev:integrated:io-center": "pnpm install:io-center && pnpm --filter @oscd-plugins/io-center build && pnpm --filter @oscd-plugins/io-center integrated",
"dev:integrated:type-designer": "pnpm install:type-designer && pnpm --filter @oscd-plugins/type-designer build && pnpm --filter @oscd-plugins/type-designer integrated"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"husky": "^8.0.3"
},
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}