-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "pyrajs",
"version": "0.30.10",
"private": true,
"type": "module",
"description": "Pyra.js is a framework designed for building modern full-stack web applications with pluggable UI adapters, unified routing, and a shared runtime.",
"author": "Nathaniel Paz",
"main": "index.js",
"scripts": {
"build": "pnpm -r --filter ./packages/* run build",
"dev:link": "pnpm build && cd packages/cli && npm link",
"dev:unlink": "cd packages/cli && npm unlink -g",
"clean": "git clean -xfd -e node_modules",
"typecheck": "pnpm -r --filter ./packages/* exec tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"publish": "bash scripts/publish-all.sh"
},
"keywords": [
"TypeScript",
"build tool",
"JavaScript",
"engine"
],
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"memfs": "^4.56.10",
"@pyra-js/cli": "workspace:*",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@types/node": "^24.10.0"
},
"pnpm": {
"overrides": {
"sucrase": "^3.35.1",
"rollup": "^4.59.0"
}
}
}