-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.26 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
{
"name": "liuran-refresh",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "npm run build:wasm && vite dev",
"build": "npm run build:wasm && vite build",
"build:wasm": "cargo build --release --manifest-path wasm_modules/Cargo.toml --target=wasm32-unknown-unknown && wasm-bindgen wasm_modules/target/wasm32-unknown-unknown/release/wasm_modules.wasm --out-dir src/lib/pkg",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "npm run build:wasm && vitest",
"test": "npm run test:unit -- --run && cargo test --manifest-path wasm_modules/Cargo.toml",
"deploy": "npm run build && npx gh-pages -d build -t true -r [email protected]:instigatorofawe/instigatorofawe.github.io.git"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"gh-pages": "^6.2.0",
"marked": "^14.1.3",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.3",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^2.0.4",
"yaml": "^2.6.0"
}
}