-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.84 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
113
{
"name": "Lepton",
"version": "2.0.0",
"description": "Democratizing Code Snippets Management (macOS/Win/Linux)",
"productName": "Lepton",
"main": "main.js",
"scripts": {
"lint": "eslint app",
"start": "electron ./main.js",
"build": "npm run license && npm run webpack-dev",
"license": "license-checker-rseidelsohn --production --relativeLicensePath --limitAttributes licenses,repository,licenseFile --json > license.json",
"webpack-watch": "webpack --watch",
"webpack-dev": "webpack --mode development",
"webpack-prod": "webpack --mode production",
"test": "npm run test:unit && npm run test:build",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:build": "webpack --mode development",
"test:smoke": "npm run test:build && node tests/smoke/electron-render-smoke.js",
"test:login-flow": "npm run test:build && node tests/smoke/electron-login-flow-smoke.js",
"test:packaged-smoke": "npm run pack && node tests/smoke/electron-packaged-smoke.js",
"package:prepare": "npm run license && npm run webpack-prod",
"dist": "npm run package:prepare && electron-builder",
"pack": "npm run package:prepare && electron-builder --dir",
"release": "npm run package:prepare && electron-builder",
"check-outdated": "check-outdated --ignore-pre-releases --ignore-dev-dependencies --ignore-packages package1,package2 --columns name,type,current,latest,changes --types major,minor,patch,reverted",
"preversion": "npm run lint && npm run test && npm run check-outdated"
},
"repository": {
"type": "git",
"url": "https://github.com/hackjutsu/Lepton.git"
},
"keywords": [
"gist",
"js",
"electron",
"desktop"
],
"author": "CosmoX",
"license": "MIT",
"packageManager": "npm@11.16.0",
"engines": {
"node": ">=24 <25",
"npm": ">=11 <12"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/eslint-parser": "^7.29.7",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^8.4.1",
"check-outdated": "^2.11.0",
"css-loader": "^5.0.0",
"electron": "^42.5.0",
"electron-builder": "^26.15.3",
"eslint": "^7.11.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^6.0.0",
"html-loader": "^2.0.0",
"json-loader": "^0.5.7",
"license-checker-rseidelsohn": "^5.0.1",
"raw-loader": "^4.0.0",
"sass": "^1.69.7",
"sass-loader": "^16.0.5",
"style-loader": "^1.2.1",
"text-loader": "0.0.1",
"url-loader": "^4.1.0",
"vitest": "^4.1.9",
"webpack": "^5.108.3",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@asciidoctor/core": "^2.2.9",
"@mdit/plugin-katex": "^1.0.0",
"autolinker": "^3.14.1",
"bluebird": "^3.5.3",
"boring-avatars": "^1.5.8",
"chart.js": "^4.5.1",
"codemirror": "^5.65.21",
"codemirror-one-dark-theme": "^1.1.1",
"electron-context-menu": "^3.0.0",
"electron-is-dev": "^2.0.0",
"electron-localshortcut": "^3.1.0",
"electron-updater": "^6.8.9",
"electron-window-state": "^5.0.0",
"fuse.js": "^3.3.0",
"highlight.js": "^11.0.0",
"highlightjs-graphql": "^1.0.2",
"highlightjs-solidity": "^1.0.6",
"human-readable-time": "^0.3.0",
"katex": "^0.17.0",
"markdown-it": "^14.2.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-task-lists": "^2.1.1",
"nconf": "^0.11.4",
"notebookjs": "^0.8.3",
"prismjs": "^1.30.0",
"react": "^19.2.7",
"react-bootstrap": "^0.32.4",
"react-dom": "^19.2.7",
"react-redux": "^9.3.0",
"react-split-pane": "^3.2.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"valid-filename": "^3.1.0",
"winston": "^3.19.0"
}
}