-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.83 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
{
"homepage": "https://tko.io/",
"license": "MIT",
"author": "The Knockout.js Team",
"repository": {
"type": "git",
"url": "https://github.com/knockout/tko.git"
},
"scripts": {
"build": "bun run --filter './packages/*' build && bun run --filter './builds/*' build",
"test": "bunx @biomejs/biome ci . && bun run build && bunx vitest run",
"test:ff": "bunx @biomejs/biome ci . && bun run build && VITEST_BROWSERS=firefox bunx vitest run",
"test:coverage": "bun run build && bunx vitest run --coverage --project browser",
"tsc": "bunx tsc",
"dts": "bunx tsc --build tsconfig.dts.json",
"format": "bunx @biomejs/biome format .",
"format:fix": "bunx @biomejs/biome format --write .",
"lint": "bunx @biomejs/biome lint .",
"lint:fix": "bunx @biomejs/biome check --fix .",
"check": "bunx @biomejs/biome check .",
"knip": "knip",
"verify:esm": "bun tools/verify-esm-extensions.ts",
"verify": "bunx @biomejs/biome check . && bunx tsc && bun run build && bun run verify:esm && bunx vitest run",
"clean": "rm -rf packages/*/dist builds/*/dist coverage"
},
"bugs": "https://github.com/knockout/tko/issues",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@changesets/cli": "^2.31.0",
"@types/jquery": "^4.0.1",
"@types/mocha": "^10.0.10",
"@vitest/browser": "^4.1.8",
"@vitest/browser-playwright": "^4.1.8",
"@vitest/coverage-v8": "4.1.8",
"chai": "^6.2.2",
"esbuild": "^0.28.0",
"happy-dom": "^20.10.1",
"jquery": "^4.0.0",
"knip": "^6.16.0",
"playwright": "^1.60.0",
"sinon": "^22.0.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"workspaces": [
"packages/*",
"builds/*"
],
"private": true
}