-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 991 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 991 Bytes
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
{
"name": "@sourecode/wire",
"version": "0.1.0",
"description": "Reactive data binding for server-rendered HTML",
"type": "module",
"license": "MIT",
"keywords": ["wire", "reactive", "data-binding", "twig", "symfony", "server-rendered"],
"homepage": "https://github.com/sourecode/wire",
"repository": {
"type": "git",
"url": "https://github.com/sourecode/wire.git"
},
"exports": {
".": {
"import": "./dist/wire.js",
"default": "./dist/wire.iife.js"
}
},
"main": "./dist/wire.iife.js",
"module": "./dist/wire.js",
"files": [
"dist",
"assets/src"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui --ui-host=0.0.0.0 --ui-port=3000"
},
"devDependencies": {
"@playwright/test": "^1.59.0",
"jsdom": "^29.0.2",
"vite": "^8.0.0",
"vitest": "^4.0.0"
}
}