-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.76 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
{
"name": "@vtbag/turn-signal",
"type": "module",
"version": "1.3.0",
"main": "lib/index.js",
"description": "Turn-Signal is a lightweight script that enhances cross-document navigation by detecting the direction of browser navigation. It enables developers to create smooth, responsive transitions that adjust based on forward or backward navigation, delivering a more intuitive user experience.",
"files": [
"lib/index.js",
"lib/forced-traversal.js",
"lib/link-types.js",
"lib/directions.js",
"lib/debug.js"
],
"exports": {
".": "./lib/index.js",
"./directions": "./lib/directions.js",
"./link-types": "./lib/link-types.js",
"./forced-traversal": "./lib/forced-traversal.js",
"./debug": "./lib/debug.js"
},
"scripts": {
"dev": "bin/bundle dev",
"build": "npm run format; bin/bundle",
"format": "prettier --write src | grep -v 'unchanged)$'",
"changeset": "changeset",
"release": "changeset publish",
"start": "npx serve -l 3000 tests",
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtbag/turn-signal.git"
},
"keywords": [
"view",
"transitions",
"view transition",
"view-transition",
"directions",
"animations",
"cross-document",
"backward",
"history-traversal"
],
"author": "vtbag",
"license": "ISC",
"bugs": {
"url": "https://github.com/vtbag/turn-signal/issues"
},
"homepage": "https://vtbag.dev",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/martrapp"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@eslint/js": "^9.19.0",
"@playwright/test": "^1.50.0",
"@types/dom-navigation": "^1.0.4",
"@types/dom-view-transitions": "^1.0.5",
"esbuild": "^0.24.2",
"prettier": "^3.4.2",
"serve": "^14.0.1",
"typescript": "^5.7.3"
}
}