-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.12 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.12 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
75
76
77
78
{
"name": "tsdot",
"version": "1.1.9",
"description": "The fastest + concise javascript template engine for Node.js and browsers.",
"license": "MIT",
"author": "Carlo Taleon",
"contributors": [
{
"name": "Laura Doktorova",
"email": "ldoktorova@gmail.com",
"url": "https://github.com/olado"
}
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite serve dev",
"test": "bun test; bunx playwright test;",
"build": "tsup",
"build:site": "vite build dev",
"ci": "bun run lint && bun run build",
"publish-pkg": "bun run lint && bun run build && changeset publish",
"lint": "tsc",
"format": "prettier --write .",
"update": "bunx npm-check-updates --interactive --format group"
},
"keywords": [
"template",
"doT",
"handlebars",
"templating engine",
"mustche",
"conditionals",
"browser",
"parser"
],
"devDependencies": {
"@blankeos/vike-routegen": "^0.0.2",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@happy-dom/global-registrator": "^15.11.7",
"@hono/vite-dev-server": "^0.20.0",
"@kobalte/core": "^0.13.10",
"@playwright/test": "^1.54.1",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/dom": "^10.4.0",
"@types/bun": "^1.2.18",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"autoprefixer": "^10.4.21",
"bagon-hooks": "^0.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "^9.31.0",
"eslint-plugin-solid": "^0.14.5",
"happy-dom": "^15.11.7",
"hono": "^4.8.5",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"solid-js": "^1.9.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vike": "^0.4.235",
"vike-metadata-solid": "^1.0.4",
"vike-solid": "^0.7.11",
"vite": "^5.4.11",
"vite-plugin-solid-svg": "^0.8.1"
},
"dependencies": {}
}