-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.23 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
{
"name": "@fabudde/nyxcode",
"version": "0.52.2",
"description": "NyxCode — The AI-native programming language. One .nyx file = full-stack app. 3.5x fewer tokens than Next.js.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nyxcode": "dist/cli.js",
"nyx": "dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"NYXCODE.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"parse": "node dist/cli.js",
"test": "node --test 'dist/tests/*.test.js'",
"prepublishOnly": "npm run build"
},
"keywords": [
"nyxcode",
"compiler",
"programming-language",
"web",
"ai-native",
"html",
"css",
"reactive",
"components",
"zero-config",
"token-efficient"
],
"homepage": "https://nyxcode.io",
"repository": {
"type": "git",
"url": "git+https://github.com/fabudde/nyxcode.git"
},
"bugs": {
"url": "https://github.com/fabudde/nyxcode/issues"
},
"author": "Fabian Budde & Nyx",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"typescript": "^5.9.3"
},
"dependencies": {
"better-sqlite3": "^12.9.0"
}
}