-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.38 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.38 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
{
"name": "azerothjs-monorepo",
"version": "0.3.0-alpha.3",
"private": false,
"description": "AzerothJS framework monorepo — fine-grained reactivity, zero Virtual DOM, direct DOM updates",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @azerothjs/reactivity && npm run build -w @azerothjs/component && npm run build -w @azerothjs/renderer && npm run build -w @azerothjs/router && npm run build -w @azerothjs/store && npm run build -w @azerothjs/form && npm run build -w @azerothjs/compiler && npm run build -w @azerothjs/core",
"dev": "tsc --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"framework",
"reactive",
"signals",
"fine-grained",
"no-vdom",
"dom",
"typescript",
"frontend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IntelligentQuantum-Dev/AzerothJS.git"
},
"author": "IntelligentQuantum",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.2",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"happy-dom": "^20.8.9",
"jiti": "^2.6.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}