-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "@pandino/root",
"version": "0.9.20",
"description": "OSGi-Style Framework for TypeScript",
"license": "EPL-2.0",
"author": "Norbert Herczeg <norbert.herczeg@blackbelt.hu>",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "pnpm -r build",
"build:dev": "pnpm -r build:dev",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"dev:example": "pnpm --filter @pandino/example dev",
"build:pandino": "pnpm --filter @pandino/pandino build",
"build:react-hooks": "pnpm --filter @pandino/react-hooks build",
"lint": "oxlint --fix",
"format:write": "oxfmt --write",
"docs:dev": "vitepress dev docs-site",
"docs:build": "vitepress build docs-site",
"docs:preview": "vitepress preview docs-site"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"typescript": "^6.0.2",
"vitepress": "^1.6.3",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
}
}