-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.58 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
{
"name": "@livetemplate/client",
"version": "0.8.4",
"description": "TypeScript client for LiveTemplate tree-based updates",
"main": "dist/livetemplate-client.js",
"browser": "dist/livetemplate-client.browser.js",
"types": "dist/livetemplate-client.d.ts",
"scripts": {
"build": "tsc && npm run build:browser",
"build:browser": "esbuild livetemplate-client.ts --bundle --format=iife --global-name=LiveTemplateClient --outfile=dist/livetemplate-client.browser.js --sourcemap --minify --target=es2018 --legal-comments=none",
"test": "jest --no-cache",
"test:coverage": "jest --coverage",
"test:reconstruction": "jest test-reconstruction",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"livetemplate",
"html",
"tree-updates",
"phoenix-liveview",
"htmx",
"websocket",
"client"
],
"author": "Adnaan Badr",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/livetemplate/client.git"
},
"homepage": "https://github.com/livetemplate/client#readme",
"bugs": {
"url": "https://github.com/livetemplate/client/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"esbuild": "^0.25.10",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.4",
"typescript": "^5.9.3"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"dependencies": {
"@types/morphdom": "^2.3.0",
"morphdom": "^2.7.7"
}
}