-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 918 Bytes
/
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
{
"name": "@miii/turbo-multiple-frame-targeting",
"description": "Add support for multiple frame targeting in Turbo",
"version": "1.0.2",
"author": {
"name": "Jacob Andersson",
"url": "https://github.com/miii"
},
"license": "MIT",
"type": "module",
"packageManager": "pnpm@8.6.2",
"sideEffects": false,
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"keywords": [
"turbo",
"hotwired",
"multiple",
"frames",
"target"
],
"files": [
"dist"
],
"scripts": {
"dev": "unbuild && pnpm --filter playground run dev",
"build": "unbuild",
"test": "vitest"
},
"devDependencies": {
"@hotwired/turbo": "latest",
"@nuxt/test-utils": "^3.5.3",
"playwright": "^1.35.1",
"unbuild": "^1.2.1",
"vitest": "^0.32.2"
}
}