-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "@schalkneethling/css-expect",
"version": "0.1.0",
"description": "Native browser-backed expectations for CSS custom functions and future CSS mixins.",
"keywords": [
"browser",
"css",
"cssom",
"custom-functions",
"mixins",
"testing"
],
"homepage": "https://github.com/schalkneethling/css-expect#readme",
"bugs": {
"url": "https://github.com/schalkneethling/css-expect/issues"
},
"license": "MIT",
"author": "Schalk Neethling",
"repository": {
"type": "git",
"url": "git+https://github.com/schalkneethling/css-expect.git"
},
"files": [
"dist",
"examples"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"example": "vp run build && node examples/run-file.mjs",
"test": "vp test",
"check": "vp check",
"package:check": "publint",
"prepublishOnly": "vp run check && vp run test && vp run build && vp run package:check"
},
"dependencies": {
"playwright": "^1.60.0"
},
"devDependencies": {
"@types/node": "^25.6.2",
"@typescript/native-preview": "7.0.0-dev.20260612.1",
"bumpp": "^11.1.0",
"publint": "^0.3.15",
"typescript": "^6.0.3",
"vite-plus": "^0.1.20",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.24"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.24"
},
"packageManager": "bun@1.3.14"
}