-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.67 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
{
"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": "RUSTFLAGS=\"-Ctarget-cpu=native\" cargo run --release --bin artefact-cli -- lena-base-420.jpg -y",
"flame": "CARGO_PROFILE_RELEASE_DEBUG=true RUSTFLAGS=\"-Ctarget-cpu=native\" cargo flamegraph --bin artefact-cli --release -- lena-base-420.jpg -y",
"build-win-32": "RUSTFLAGS=\"-Ctarget-cpu=native\" cargo build --bin artefact-cli --release --target i686-pc-windows-gnu",
"build-win-64": "RUSTFLAGS=\"-Ctarget-cpu=native\" cargo build --bin artefact-cli --release --target x86_64-pc-windows-gnu",
"build-linux-32": "RUSTFLAGS=\"-Ctarget-cpu=native\" cargo build --bin artefact-cli --release --target i686-unknown-linux-gnu",
"build-linux-64": "RUSTFLAGS=\"-Ctarget-cpu=native\" 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 fmt && cargo clippy"
},
"dependencies": {
"@nuxtjs/color-mode": "3.5.2",
"@pinia/nuxt": "0.9.0",
"@vite-pwa/nuxt": "0.10.6",
"@vueuse/core": "^12.7.0",
"@vueuse/nuxt": "12.2.0",
"clsx": "^2.1.1",
"idb": "^8.0.2",
"lucide-vue-next": "^0.469.0",
"nuxt": "^3.15.4",
"pinia": "^2.3.1",
"radix-vue": "^1.9.17",
"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.13.1",
"@types/eslint": "^9.6.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.21.0",
"eslint-plugin-hagemanto": "^5.0.1",
"eslint-plugin-vue": "^9.32.0",
"postcss": "^8.5.3",
"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": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}