-
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) · 1.92 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.92 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": "@newlogic-digital/core",
"type": "module",
"version": "4.1.2",
"main": "index.js",
"bin": {
"newlogic-core": "./bin/newlogic-core.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",
"oxlint": "oxlint",
"oxlint-fix": "oxlint --fix",
"lint": "npm run oxlint && npm run tsc",
"publish-next": "npm publish --tag next"
},
"dependencies": {
"@minify-html/node": "^0.18.1",
"@newlogic-digital/vite-plugin-heroicons": "^1.3.1",
"@stylistic/eslint-plugin": "^5.10",
"@stylistic/stylelint-config": "^5.0.0",
"@vituum/vite-plugin-css-inline": "^2.1.0",
"@vituum/vite-plugin-latte": "^2.0.2",
"@vituum/vite-plugin-send": "^2.0.1",
"browserslist": "^4.28.2",
"browserslist-to-esbuild": "^2.1.1",
"lightningcss": "^1.32.0",
"npm-check-updates": "^21.0.3",
"oxlint": "^1.61.0",
"postcss-custom-properties": "^15.0.1",
"stylelint-config-standard": "^40.0.0",
"vituum": "^2.0.2"
},
"peerDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@vituum/vite-plugin-twig": "^2.0.1",
"vite": "^8.0.10"
},
"peerDependenciesMeta": {
"@vituum/vite-plugin-twig": {
"optional": true
},
"@tailwindcss/vite": {
"optional": true
}
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6",
"@vituum/vite-plugin-twig": "^2.0.1",
"rolldown": "^1.0.0-rc.17",
"typescript": "^6"
},
"files": [
"bin",
"icons",
"latte",
"skills",
"src",
"types",
"eslint-stylistic.json",
"stylelint-config.json",
"index.js"
],
"exports": {
".": "./index.js",
"./types": "./types/*"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newlogic-digital/core.git"
}
}