-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.52 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
{
"name": "@fabudde/nyxcode",
"version": "0.54.1",
"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",
"test:e2e": "node --test --test-timeout=120000 dist/tests/e2e/*.test.js",
"test:all": "npm run build && npm test && npm run test:e2e",
"typecheck": "tsc --noEmit",
"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": ">=20"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"bcryptjs": "^2.4.3",
"express": "^4.21.2",
"express-rate-limit": "^7.4.1",
"jsonwebtoken": "^9.0.2",
"typescript": "^5.9.3"
},
"dependencies": {
"better-sqlite3": "^12.9.0"
}
}