-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 883 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 883 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
{
"name": "dommie",
"version": "3.0.9",
"module": "./build/app.js",
"entrypoint": "./build/app.js",
"types": "./build/app.d.ts",
"type": "module",
"description": "A lightweight library for building reactive UIs pure JavaScript.",
"license": "MIT",
"repository": "https://github.com/HatAndBread/Dommie",
"author": "Joshua Hume",
"scripts": {
"start": "bun run index.js",
"dev": "bun --watch run index.ts",
"build": "tsc --project tsconfig.types.json && bun run build:min",
"build:min": "bun run build-min.ts"
},
"devDependencies": {
"@happy-dom/global-registrator": "^15.7.3",
"@playwright/test": "^1.47.1",
"@types/bun": "^1.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.5",
"prettier": "^3.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"diff-dom": "^5.1.4"
}
}