-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.71 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
{
"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",
"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.11",
"@changesets/cli": "^2.30.0",
"@types/jquery": "^4.0.0",
"@types/mocha": "^10.0.10",
"@vitest/browser": "^4.1.4",
"@vitest/browser-playwright": "^4.1.4",
"chai": "^6.2.2",
"esbuild": "^0.28.0",
"happy-dom": "^20.9.0",
"jquery": "^4.0.0",
"knip": "^6.4.1",
"playwright": "^1.59.1",
"sinon": "^21.0.3",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"workspaces": [
"packages/*",
"builds/*"
],
"private": true
}