-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 987 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "@wasmsharp/monorepo",
"private": true,
"scripts": {
"dev": "pnpm start",
"init-playground-deps": "pnpm run build:core && pnpm run build:imports-plugin && pnpm run build:vite-plugin",
"start": "pnpm --filter playground run start",
"playground": "pnpm run start",
"test": "pnpm --filter playground test",
"e2e": "pnpm --filter playground test:e2e",
"core": "pnpm --filter core run watch",
"build:playground": "pnpm --filter playground run build",
"build:core": "pnpm --filter core build",
"build:vite-plugin": "pnpm --filter @wasmsharp/vite-plugin run build",
"build:imports-plugin": "pnpm --filter vite-plugin-ignore-dynamic-imports run build",
"serve": "pnpm --filter playground serve",
"build-serve": "pnpm run build:playground && pnpm run serve",
"all": "pnpm run build:core && pnpm run build-serve",
"pack:core": "pnpm --filter core pack:core"
},
"devDependencies": {
"typescript": "catalog:"
}
}