-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.18 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.18 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@testing-library/svelte-repo",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"all": "pnpm contributors:generate && pnpm build && pnpm format && pnpm test:all && pnpm typecheck",
"all:legacy": "pnpm build:types && pnpm test:all:legacy && pnpm typecheck:legacy",
"lint": "prettier . --check && eslint .",
"format": "prettier . --write && eslint . --fix",
"setup": "pnpm install:5 && pnpm all",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:vitest:jsdom": "vitest run tests --coverage --environment jsdom",
"test:vitest:happy-dom": "vitest run tests --coverage --environment happy-dom",
"test:jest": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage",
"test:examples": "vitest run examples --coverage",
"typecheck": "svelte-check --tsconfig=tests/tsconfig.json",
"typecheck:legacy": "svelte-check --tsconfig=tests/tsconfig.legacy.json",
"test:all": "pnpm test:vitest:jsdom && pnpm test:vitest:happy-dom && pnpm test:jest && pnpm test:examples",
"test:all:legacy": "pnpm test:vitest:jsdom && pnpm test:vitest:happy-dom && pnpm test:jest",
"build": "pnpm build:types && pnpm build:docs",
"build:types": "tsc --build",
"build:docs": "remark --output --use remark-toc --use remark-code-import --use unified-prettier README.md packages/*/README.md examples && cp -f README.md packages/svelte",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"install:3": "./scripts/install-dependencies 3",
"install:4": "./scripts/install-dependencies 4",
"install:5": "./scripts/install-dependencies 5"
},
"dependencies": {
"@testing-library/svelte": "workspace:*"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.2.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.6.1",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/eslint-plugin": "^1.1.44",
"all-contributors-cli": "^6.26.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^3.5.1",
"eslint-plugin-testing-library": "^7.1.1",
"eslint-plugin-unicorn": "^63.0.0",
"expect-type": "^1.2.1",
"globals": "^17.0.0",
"happy-dom": "^20.0.11",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^28.1.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"remark-cli": "^12.0.1",
"remark-code-import": "^1.2.0",
"remark-toc": "^9.0.0",
"svelte": "^5.28.2",
"svelte-check": "^4.1.7",
"svelte-jester": "^5.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"typescript-svelte-plugin": "^0.3.46",
"unified-prettier": "^2.0.1",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c"
}