-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.06 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.06 KB
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
{
"name": "iris",
"version": "5.0.0",
"description": "ILR (Individualised Learner Record) toolkit - CSV to ILR XML conversion with semantic validation",
"type": "module",
"bin": {
"iris": "./src/cli.ts"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test:core": "bun test",
"test:svelte": "vitest",
"test:svelte:watch": "vitest --watch",
"test:all": "bun run test:core && bun run test:svelte",
"check:svelte": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:svelte:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:sign": "codesign --deep --force --verify --verbose --sign \"-\" src-tauri/target/release/bundle/macos/Iris.app",
"version:set": "bun run scripts/update-version.ts",
"version:next": "bun run scripts/update-version.ts $(svu next | sed 's/^v//')",
"version:patch": "bun run scripts/update-version.ts $(svu patch | sed 's/^v//')",
"version:minor": "bun run scripts/update-version.ts $(svu minor | sed 's/^v//')",
"version:major": "bun run scripts/update-version.ts $(svu major | sed 's/^v//')",
"cli": "bun run src/cli.ts",
"build:tui": "bun run scripts/build-tui.ts",
"build:tui:mac": "bun run scripts/build-tui.ts --target darwin-arm64",
"build:tui:win": "bun run scripts/build-tui.ts --target windows-x64"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tauri-apps/cli": "^2.1.0",
"@tauri-apps/api": "^2.1.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@types/bun": "^1.3.7",
"@types/papaparse": "^5.5.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tslib": "^2.6.2",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^2.0.0"
},
"dependencies": {
"@opentui/core": "0.1.77",
"fast-xml-parser": "^5.3.3",
"opentui-spinner": "0.0.6",
"papaparse": "^5.5.3"
}
}