-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@symfony/reprise",
"type": "module",
"version": "0.8.0",
"description": "Symfony asset integration for Vite and Rsbuild, a reprise of Webpack Encore.",
"license": "MIT",
"author": {
"name": "Symfony Community",
"url": "https://symfony.com/contributors"
},
"homepage": "https://github.com/symfony/reprise#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/symfony/reprise.git",
"directory": "assets"
},
"bugs": {
"url": "https://github.com/symfony/reprise/issues"
},
"keywords": [
"symfony",
"assets",
"vite",
"rsbuild",
"encore"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./rsbuild": {
"types": "./dist/rsbuild.d.mts",
"default": "./dist/rsbuild.mjs"
},
"./stimulus": {
"types": "./dist/stimulus.d.mts",
"default": "./dist/stimulus.mjs"
},
"./types": {
"types": "./dist/types.d.mts",
"default": "./dist/types.mjs"
},
"./vite": {
"types": "./dist/vite.d.mts",
"default": "./dist/vite.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": "^22.18.0 || ^24.11.0 || >=26.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown -w",
"typecheck": "tsc -p tsconfig.typecheck.json",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "tsdown"
},
"peerDependencies": {
"@hotwired/stimulus": ">=3",
"@rsbuild/core": "^1.7.0 || ^2.0.0",
"vite": "^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"@hotwired/stimulus": {
"optional": true
},
"@rsbuild/core": {
"optional": true
},
"vite": {
"optional": true
}
},
"dependencies": {
"unplugin": "^3.3.0"
},
"devDependencies": {
"@hotwired/stimulus": "^3.2.2",
"@rsbuild/core": "^2.1.13",
"@rspack/core": "~2.1.10",
"@tsconfig/node22": "^22.0.6",
"@types/node": "^26.2.0",
"@vitejs/plugin-react": "^6.0.5",
"jsdom": "^30.0.1",
"nodemon": "^3.1.14",
"tsdown": "^0.22.14",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"vite": "^8.2.1",
"vitest": "^4.1.10"
}
}