-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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": "themed.js",
"author": "Starit <starit.public@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/starit/themed.js"
},
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm --filter @themed.js/core run build && pnpm --filter '!@themed.js/core' -r --parallel run dev",
"dev:core": "pnpm --filter @themed.js/core run dev",
"build": "pnpm -r run build",
"build:packages": "pnpm --filter \"./packages/*\" run build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "pnpm -r run clean && rm -rf node_modules",
"prepublishOnly": "pnpm run build:packages"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.0",
"happy-dom": "^15.0.0",
"typescript": "~5.8.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0"
}
}