-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.54 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
56
57
58
59
60
61
62
{
"name": "outliner",
"description": "A cross platform desktop outliner that is built using tauri",
"version": "0.0.6",
"author": "Angelo R <me@xangelo.ca>",
"license": "MIT",
"homepage": "https://github.com/AngeloR/outliner",
"bugs": {
"url": "https://github.com/AngeloR/outliner/issues"
},
"keywords": [
"outliner",
"desktop",
"cross-platform",
"tauri"
],
"repository": {
"type": "git",
"url": "https://github.com/AngeloR/outliner"
},
"scripts": {
"dev": "npx serve public",
"webpack-local": "ENVIRONMENT=development npx webpack -w",
"build": "npx webpack",
"test": "npx jest",
"tauri": "tauri"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.5",
"@types/jest": "^29.5.14",
"@types/keyboardjs": "^2.5.0",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.2.0",
"jest": "^30.2.0",
"serve": "^14.2.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^5.9.2",
"webpack": "^5.75.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@lyrasearch/lyra": "^0.4.3",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.4.0",
"@tauri-apps/plugin-fs": "^2.4.1",
"@tauri-apps/plugin-shell": "^2.3.0",
"dotenv": "^17.2.1",
"keyboardjs": "^2.7.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"marked": "^16.1.2",
"uuid": "^11.1.0"
},
"volta": {
"node": "24.5.0",
"npm": "11.5.1"
}
}