forked from neomjs/neo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 5.31 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 5.31 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name" : "neo.mjs",
"version" : "10.9.0",
"description": "Neo.mjs: The multi-threaded UI framework for building ultra-fast, desktop-like web applications with uncompromised responsiveness, inherent security, and a transpilation-free dev mode.",
"type" : "module",
"repository": {
"type": "git",
"url" : "https://github.com/neomjs/neo.git"
},
"bin": {
"neo-cc": "./buildScripts/createClass.mjs"
},
"scripts": {
"add-config" : "node ./buildScripts/addConfig.mjs",
"add-reactive-tags" : "node ./buildScripts/addReactiveTags.mjs",
"ai:build-kb" : "npm run ai:create-kb && npm run ai:embed-kb",
"ai:create-kb" : "node buildScripts/ai/createKnowledgeBase.mjs",
"ai:embed-kb" : "node buildScripts/ai/embedKnowledgeBase.mjs",
"ai:query" : "node buildScripts/ai/queryKnowledgeBase.mjs",
"ai:server" : "chroma run --path ./chroma",
"build-all" : "node ./buildScripts/buildAll.mjs -f -n",
"build-all-questions" : "node ./buildScripts/buildAll.mjs -f",
"build-dist-esm" : "node ./buildScripts/buildESModules.mjs",
"build-themes" : "node ./buildScripts/buildThemes.mjs -f",
"build-threads" : "node ./buildScripts/webpack/buildThreads.mjs -f",
"bundle-parse5" : "node ./buildScripts/bundleParse5.mjs",
"check-reactive-tags" : "node ./buildScripts/checkReactiveTags.mjs",
"convert-design-tokens" : "node ./buildScripts/convertDesignTokens.mjs",
"create-app" : "node ./buildScripts/createApp.mjs",
"create-app-minimal" : "node ./buildScripts/createAppMinimal.mjs",
"create-class" : "node ./buildScripts/createClass.mjs",
"create-component" : "node ./buildScripts/createComponent.mjs",
"generate-docs-json" : "node ./buildScripts/docs/jsdocx.mjs",
"inject-package-version": "node ./buildScripts/injectPackageVersion.mjs",
"server-start" : "webpack serve -c ./buildScripts/webpack/webpack.server.config.mjs --open",
"test" : "playwright test -c test/playwright/playwright.config.mjs",
"watch-themes" : "node ./buildScripts/watchThemes.mjs"
},
"keywords": [
"javascript",
"frontend",
"framework",
"performance",
"ui-responsiveness",
"no-jank",
"smooth-ui",
"scalability",
"enterprise",
"multi-threaded",
"desktop-like",
"native-like",
"web-app",
"offscreencanvas",
"sharedworker",
"webworker",
"virtual-dom",
"ecmascript",
"css",
"json",
"react-alternative",
"angular-alternative",
"zero-build",
"no-transpilation",
"security",
"xss-resistant",
"realtime",
"data-visualization",
"single-page-application",
"spa",
"generative-ai",
"genai",
"ai-interfaces",
"json-blueprints",
"low-code-ui",
"multi-window",
"pwa",
"progressive-web-app",
"predictive-caching"
],
"author" : "Tobias Uhlig",
"license": "MIT",
"bugs": {
"url": "https://github.com/neomjs/neo/issues"
},
"homepage" : "https://neomjs.com/",
"devDependencies": {
"@chroma-core/default-embed" : "^0.1.8",
"@fortawesome/fontawesome-free": "^7.0.1",
"@google/generative-ai" : "^0.24.1",
"@playwright/test" : "^1.55.1",
"acorn" : "^8.15.0",
"astring" : "^1.9.0",
"autoprefixer" : "^10.4.21",
"chalk" : "^5.6.2",
"chromadb" : "^3.0.15",
"clean-webpack-plugin" : "^4.0.0",
"commander" : "^14.0.1",
"cssnano" : "^7.1.1",
"dotenv" : "^17.2.2",
"envinfo" : "^7.14.0",
"esbuild" : "^0.25.10",
"fs-extra" : "^11.3.2",
"highlightjs-line-numbers.js" : "^2.9.0",
"html-minifier-terser" : "^7.2.0",
"inquirer" : "^12.9.6",
"marked" : "^16.3.0",
"monaco-editor" : "0.50.0",
"neo-jsdoc" : "1.0.1",
"neo-jsdoc-x" : "1.0.5",
"parse5" : "^8.0.0",
"postcss" : "^8.5.6",
"sass" : "^1.93.2",
"siesta-lite" : "5.5.2",
"terser" : "^5.44.0",
"url" : "^0.11.4",
"webpack" : "^5.101.3",
"webpack-cli" : "^6.0.1",
"webpack-dev-server" : "^5.2.2",
"webpack-hook-plugin" : "^1.0.7",
"webpack-node-externals" : "^3.0.0",
"yargs" : "^17.7.2"
},
"funding": {
"type": "GitHub Sponsors",
"url" : "https://github.com/sponsors/tobiu"
}
}