-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 KB
/
package.json
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
{
"name": "@newlogic-digital/core",
"type": "module",
"version": "3.0.0",
"main": "index.js",
"author": "New Logic Studio s.r.o.",
"description": "Set of tools that can be used to create modern web applications",
"license": "MIT",
"scripts": {
"tsc": "tsc",
"eslint": "eslint '**/*.js' --fix",
"publish-next": "npm publish --tag next"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.0",
"@vituum/vite-plugin-juice": "^1.3.0",
"@vituum/vite-plugin-latte": "^1.3.0",
"@vituum/vite-plugin-posthtml": "^1.1.0",
"@vituum/vite-plugin-send": "^1.1.0",
"browserslist": "^4.24.4",
"browserslist-to-esbuild": "^2.1.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.29.1",
"lodash": "^4.17.21",
"picocolors": "^1.1.1",
"posthtml": "^0.16.6",
"posthtml-prism": "^2.0.1",
"prismjs": "^1.29.0",
"vituum": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.12.0",
"eslint": "^9.19.0",
"neostandard": "^0.12.0",
"typescript": "^5",
"vite": "^6",
"@vituum/vite-plugin-tailwindcss": "^1.2.0",
"@vituum/vite-plugin-twig": "^1.1.0"
},
"files": [
"latte",
"types",
"index.js",
"src"
],
"exports": {
".": "./index.js",
"./types": "./types/*"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newlogic-digital/core.git"
}
}