-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 977 Bytes
/
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
{
"name": "wasm-convert",
"private": false,
"author": {
"name": "Tom Voet",
"email": "tomvoet@pm.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomvoet/wasm-convert"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && pnpm run wasm:bundle",
"wasm:bundle": "cd wasm && wasm-pack build --target web --release",
"deploy": "pnpm run wasm:bundle && nuxt generate && gh-pages -d ./dist -t true",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "3.7.3",
"@iconify-json/simple-icons": "^1.2.5",
"@nuxt/eslint": "0.5.7",
"@nuxt/ui": "2.18.6",
"@vite-pwa/nuxt": "^0.10.5",
"@vueuse/nuxt": "11.1.0",
"eslint": "9.12.0",
"eslint-plugin-format": "0.1.2",
"gh-pages": "6.1.1",
"nuxt": "^3.13.2"
}
}