-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.54 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
{
"name": "safelight",
"version": "0.0.0",
"private": true,
"type": "module",
"author": "Joery Münninghoff",
"license": "Apache-2.0",
"scripts": {
"build": "pnpm build:packages && pnpm build:safelight",
"build:packages": "pnpm \"/build:(?!(packages)|(safelight))/\"",
"build:darkroom": "pnpm --filter=@safelight/darkroom run build",
"build:safelight": "pnpm --filter=@safelight/safelight run build",
"build:timeline": "pnpm --filter=@safelight/timeline run build",
"build:tswebm": "pnpm --filter=@safelight/tswebm run build",
"test": "vitest run",
"test:ui": "vitest --ui --open false",
"test:daguerreo": "pnpm --filter=@safelight/daguerreo run test:run",
"test:darkroom": "pnpm --filter=@safelight/darkroom run test:run",
"test:shared": "pnpm --filter=@safelight/shared run test:run",
"test:timeline": "pnpm --filter=@safelight/timeline run test:run",
"test:tswebm": "pnpm --filter=@safelight/tswebm run test:run",
"dev": "pnpm --filter=@safelight/safelight run dev",
"dev:darkroom": "pnpm build:packages && pnpm --filter=@safelight/darkroom run dev:web",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:prettier": "prettier . --write --ignore-path .gitignore --ignore-path ./packages/safelight/.gitignore --ignore-path .prettierignore -u --cache -l",
"lint:eslint": "eslint **/*{.ts,.js,.vue}",
"postinstall": "playwright install"
},
"workspaces": [
"packages/daguerreo",
"packages/darkroom",
"packages/plugin-types",
"packages/safelight",
"packages/shared",
"packages/timeline",
"packages/tswebm"
],
"devDependencies": {
"@eslint/js": "^9.22.0",
"@intlify/eslint-plugin-vue-i18n": "^3.2.0",
"@types/dom-webcodecs": "^0.1.13",
"@types/node": "^22.13.5",
"@types/wicg-file-system-access": "^2023.10.5",
"@unocss/eslint-plugin": "^66.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "^3.0.8",
"@vitest/ui": "^3.0.8",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.33.0",
"playwright": "^1.51.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.1",
"vite-plugin-hot-glob": "^1.0.1",
"vitest": "^3.0.8",
"vue": "^3.5.13",
"vue-eslint-parser": "^9.4.3",
"vue-i18n": "^11.1.1"
},
"packageManager": "[email protected]+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}