-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 3.69 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
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
{
"name": "nota",
"version": "0.6.0",
"description": "an open-sourced markdown editor",
"main": "./dist/main-bundle.js",
"type": "commonjs",
"private": true,
"_moduleAliases": {
"eslint-plugin-local": "./scripts/linting/eslint-plugin-local"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"script": "node ./scripts/script.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bistard/nota.git"
},
"keywords": [
"nota"
],
"author": "sihanli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bistard/nota/issues"
},
"homepage": "https://github.com/Bistard/nota#readme",
"devDependencies": {
"@types/estraverse": "^5.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^22.8.1",
"@types/prismjs": "^1.16.6",
"@types/requestidlecallback": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"benchmark": "^2.1.4",
"circular-dependency-plugin": "^5.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"electron": "^25.8.4",
"eslint": "^8.56.0",
"estraverse": "^5.3.0",
"fantasticon": "^1.2.3",
"ist": "^1.1.7",
"jsdom": "^21.1.0",
"link-module-alias": "^1.2.0",
"mini-css-extract-plugin": "^2.7.2",
"mocha": "^9.1.3",
"mochapack": "^2.1.4",
"node-loader": "^2.0.0",
"prosemirror-test-builder": "^1.1.1",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"ts-loader": "^9.2.5",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^5.6.3",
"webpack": "^5.94.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"//": {
"devDependencies": {
"@types/*": "Type definitions for various libraries to help with TypeScript type checking.",
"@typescript-eslint/*": "TypeScript-specific linting tools for ESLint.",
"benchmark": "A benchmarking library.",
"circular-dependency-plugin": "A webpack plugin to detect modules with circular dependencies.",
"cross-env": "Set and use environment variables across platforms. Used to achieve local customized eslint rules.",
"css-loader": "Webpack loader for importing CSS files in JavaScript modules.",
"electron": "Framework for creating native applications with web technologies.",
"eslint": "JavaScript and TypeScript linter.",
"fantasticon": "Tool to generate icon fonts.",
"jsdom": "JavaScript-based DOM simulation tools for Node.js. Useful when testing in Mocha environment.",
"link-module-alias": "Link and resolve aliases of modules in Node.js. Used to achieve local customized eslint rules.",
"mini-css-extract-plugin": "Extracts CSS from your bundles into separate files.",
"mocha and mochapack": "Testing framework and its webpack integration.",
"node-loader": "Webpack loader for Node.js native modules.",
"prosemirror-test-builder": "Utility libraries for fast building proseMirror elements.",
"sass and sass-loader": "CSS pre-processor and its Webpack loader.",
"ts-loader": "TypeScript loader for Webpack.",
"ts-node": "TypeScript execution environment for node.",
"tsconfig-paths": "Load node modules using paths from tsconfig.",
"typescript": "JavaScript superset offering static type checking.",
"webpack and related packages": "Module bundler and its various plugins/loaders."
},
"dependencies": {
"chokidar": "Filesystem watcher. Used to achieve file watching on different platform.",
"minimist": "Parse argument options. Good tiny lib to use."
}
},
"dependencies": {
"chokidar": "^3.5.3",
"codemirror": "^6.0.1",
"marked": "^14.1.3",
"minimist": "^1.2.8",
"openai": "^4.28.0",
"prosemirror-history": "^1.4.1",
"prosemirror-model": "^1.18.1",
"prosemirror-state": "^1.4.2",
"prosemirror-transform": "^1.7.0",
"prosemirror-view": "^1.29.0"
}
}