-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.53 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
{
"name": "artefact",
"version": "1.0.0",
"description": "Intercept the JPEG image decoding process to achieve an artifact-free output.",
"type": "module",
"scripts": {
"test-base-420": "cargo run --bin artefact-cli --release -- lena-base-420.jpg -y -i 10000",
"flame": "CARGO_PROFILE_RELEASE_DEBUG=true cargo flamegraph --bin artefact-cli --release -- lena-base-420.jpg -y",
"build-win-32": "cargo build --bin artefact-cli --release --target i686-pc-windows-gnu",
"build-win-64": "cargo build --bin artefact-cli --release --target x86_64-pc-windows-gnu",
"build-linux-32": "cargo build --bin artefact-cli --release --target i686-unknown-linux-gnu",
"build-linux-64": "cargo build --bin artefact-cli --release --target x86_64-unknown-linux-gnu",
"build": "nuxt build",
"build-wasm": "rm -rf src/utils/artefact-wasm && cd artefact-wasm && wasm-pack build --target web --out-dir ../src/utils/artefact-wasm && cd .. && rm -f src/utils/artefact-wasm/.gitignore",
"dev": "nuxt dev",
"generate": "nuxt generate && cp .nuxt/dist/client/manifest.webmanifest .output/public/manifest.webmanifest",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --fix --cache .",
"tidy": "cargo clippy && cargo fmt"
},
"dependencies": {
"@nuxtjs/color-mode": "3.5.2",
"@pinia/nuxt": "0.9.0",
"@vite-pwa/nuxt": "0.10.6",
"@vueuse/core": "^12.4.0",
"@vueuse/nuxt": "12.2.0",
"clsx": "^2.1.1",
"idb": "^8.0.1",
"lucide-vue-next": "^0.469.0",
"nuxt": "^3.15.1",
"pinia": "^2.3.0",
"radix-vue": "^1.9.12",
"shadcn-nuxt": "0.11.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vue": "latest",
"vue-router": "latest",
"vue-sonner": "^1.3.0"
},
"devDependencies": {
"@nuxt/eslint": "0.7.4",
"@nuxtjs/tailwindcss": "^6.12.2",
"@types/eslint": "^9.6.1",
"@typescript-eslint/parser": "^8.19.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-plugin-hagemanto": "github:Delnegend/hagemanto#3.1.2",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-wasm": "^3.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Delnegend/artefact.git"
},
"author": "Delnegend",
"license": "MIT, Apache 2.0",
"bugs": {
"url": "https://github.com/Delnegend/artefact/issues"
},
"homepage": "https://github.com/Delnegend/artefact#readme",
"packageManager": "[email protected]+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}