-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "nas-notesbook",
"version": "7.0.0",
"releaseLabel": "V07",
"private": true,
"description": "RTL-first local desktop notebook for NASbook.",
"main": "dist/electron/main/index.js",
"scripts": {
"dev": "npm run build && electron .",
"start": "npm run build && electron .",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit && tsc -p tsconfig.electron.json --noEmit",
"test": "npm run build:electron && node --test tests/*.test.mjs",
"test:electron-runtime": "node tests/run-electron-as-node.cjs",
"rebuild:electron": "electron-rebuild -f -w better-sqlite3",
"build": "npm run build:electron && vite build",
"build:electron": "tsc -p tsconfig.electron.json",
"dist:win": "npm run build && electron-builder --win nsis",
"pack:win": "npm run build && electron-builder --win nsis --x64 --publish=never",
"preview": "vite preview --host 127.0.0.1",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@tiptap/extension-color": "^3.27.0",
"@tiptap/extension-font-family": "^3.27.0",
"@tiptap/extension-link": "^3.27.0",
"@tiptap/extension-table": "^3.27.0",
"@tiptap/extension-table-cell": "^3.27.0",
"@tiptap/extension-table-header": "^3.27.0",
"@tiptap/extension-table-row": "^3.27.0",
"@tiptap/extension-text-align": "^3.27.0",
"@tiptap/extension-text-style": "^3.27.0",
"@tiptap/extension-underline": "^3.27.0",
"@tiptap/react": "^3.27.0",
"@tiptap/starter-kit": "^3.27.0",
"better-sqlite3": "^12.11.1",
"electron-updater": "^6.8.9",
"marked": "^18.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"turndown": "^7.2.4"
},
"devDependencies": {
"@electron/rebuild": "^4.0.4",
"@eslint/js": "^9.29.0",
"@types/node": "^22.15.32",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/turndown": "^5.0.6",
"@vitejs/plugin-react": "^4.5.2",
"autoprefixer": "^10.4.21",
"electron": "^39.8.10",
"electron-builder": "^26.15.3",
"eslint": "^9.29.0",
"postcss": "^8.5.25",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^6.3.5"
},
"build": {
"productName": "NASbook",
"appId": "com.nasfm.notesbook",
"directories": {
"output": "release"
},
"publish": [
{
"provider": "github",
"owner": "sufyanaser",
"repo": "NASbook",
"releaseType": "release"
}
],
"files": [
"dist/**/*",
"assets/icon.ico",
"assets/nasbk-file-icon.ico",
"package.json"
],
"fileAssociations": [
{
"ext": "nasbk",
"name": "NASBK Note Document",
"description": "NASbook Note Backup Document",
"icon": "assets/nasbk-file-icon.ico",
"role": "Editor"
}
],
"asarUnpack": [
"node_modules/better-sqlite3/build/Release/*.node"
],
"win": {
"target": [
"nsis"
],
"icon": "assets/icon.ico",
"artifactName": "NASbook-Setup-V07.exe"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico",
"artifactName": "NASbook-Setup-V07.${ext}"
}
},
"author": "Sufyan Nasser Ali"
}