-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
60
61
62
63
64
65
66
67
{
"name": "@sitegeist/vitesse",
"version": "2.0.0",
"type": "module",
"description": "FE toolkit for sitegeist TYPO3 projects (mainly using Vite)",
"bin": "bin/vitesse.js",
"main": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/sitegeist/vitesse.git"
},
"author": "Lennart Järvinen <[email protected]>",
"license": "ISC",
"exports": {
".": "./dist/node/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && yarn build-bundle",
"watch": "rimraf dist && yarn watch-bundle",
"build-bundle": "rollup --config rollup.config.ts --configPlugin typescript",
"watch-bundle": "rollup --config rollup.config.ts --configPlugin typescript --watch"
},
"packageManager": "[email protected]",
"peerDependencies": {
"@types/node": "^20.3.3",
"tailwindcss": "^4"
},
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/postcss": "^4.0.7",
"@types/node": "^22.13.4",
"@types/svg-sprite": "^0.0.39",
"@types/vinyl": "^2.0.12",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cac": "^6.7.14",
"chokidar": "^4.0.3",
"glob": "^11.0.1",
"picocolors": "^1.1.1",
"postcss": "^8.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.34.8",
"sass": "^1.85.0",
"svelte": "^4.2.3",
"svelte-preprocess": "^6.0.3",
"svg-sprite": "^2.0.4",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vinyl": "^3.0.0",
"vite": "^5.4.14",
"vite-plugin-sass-glob-import": "^5.0.0"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
"tailwindcss": {
"optional": true
}
}
}