-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.34 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
{
"name": "safelight",
"version": "0.0.0",
"private": true,
"type": "module",
"author": "Joery Münninghoff",
"license": "Apache-2.0",
"scripts": {
"build": "pnpm \"/build:(?!(packages)|(safelight))/\" && pnpm build:safelight",
"build:packages": "pnpm \"/build:(?!(packages)|(safelight))/\"",
"build:darkroom": "cd packages/darkroom && pnpm build",
"build:safelight": "cd packages/safelight && pnpm build",
"build:tswebm": "cd packages/tswebm && pnpm build",
"test": "vitest run",
"test:darkroom": "cd packages/darkroom && pnpm test:run",
"test:darkroom-firefox": "cd packages/darkroom && pnpm test:run-firefox",
"test:shared": "cd packages/shared && pnpm test:run",
"test:timeline": "cd packages/timeline && pnpm test:run",
"test:tswebm": "cd packages/tswebm && pnpm test:run",
"dev": "cd packages/safelight && pnpm dev",
"dev:darkroom": "pnpm build:packages && cd packages/darkroom && pnpm dev:web",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:prettier": "prettier . --write --ignore-path .gitignore --ignore-path ./packages/safelight/.gitignore --ignore-path .prettierignore",
"lint:eslint": "eslint ./packages/**/*{.ts,.js,.vue}"
},
"workspaces": [
"packages/timeline",
"packages/darkroom",
"packages/safelight",
"packages/shared",
"packages/plugin-types"
],
"devDependencies": {
"@eslint/js": "^9.14.0",
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@types/dom-webcodecs": "^0.1.13",
"@types/eslint__js": "^8.42.3",
"@types/wicg-file-system-access": "^2023.10.5",
"@vitejs/plugin-vue": "^5.1.5",
"@vitest/browser": "^2.1.5",
"@vitest/ui": "^2.1.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-vue": "^9.30.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.11",
"vite-plugin-hot-glob": "^1.0.0",
"vitest": "^2.1.5",
"vue": "^3.5.12",
"vue-i18n": "10.0.4"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}