-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.19 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
{
"name": "@vtbag/utensil-drawer",
"type": "module",
"version": "1.2.16",
"description": "Pull out just what you need to craft seamless transitions. The Utensil Drawer holds reusable functions to help you build websites with view transitions. It is a bit sparse right now, but like the one in your kitchen, it is bound to fill up over time.",
"sideEffects": false,
"files": [
"lib/*.js",
"lib/*.d.ts",
"lib/bundled/*.js"
],
"exports": {
"./declarative-names": "./lib/bundled/declarative-names.js",
"./dynamic-style": {
"types": "./lib/dynamic-style.d.ts",
"import": "./lib/dynamic-style.js"
},
"./escape-view-transition-name": {
"types": "./lib/escape-view-transition-name.d.ts",
"import": "./lib/escape-view-transition-name.js"
},
"./may-start-view-transition": {
"types": "./lib/may-start-view-transition.d.ts",
"import": "./lib/may-start-view-transition.js"
},
"./set-view-transition-names": {
"types": "./lib/set-view-transition-names.d.ts",
"import": "./lib/set-view-transition-names.js"
},
"./vectors": {
"types": "./lib/vectors.d.ts",
"import": "./lib/vectors.js"
}
},
"scripts": {
"dev": "bin/bundle dev",
"build": "npm run format; bin/bundle",
"format": "prettier --write src | grep -v 'unchanged)$'",
"test": "bin/bundle test && bin/test && npx publint",
"changeset": "changeset",
"start": "npx serve --debug -l 3000 tests",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtbag/utensil-drawer.git"
},
"keywords": [
"view",
"transitions",
"view-transition",
"view-transitions",
"library",
"toolbox",
"utils",
"utilities"
],
"author": "vtbag",
"license": "ISC",
"bugs": {
"url": "https://github.com/vtbag/utensil-drawer/issues"
},
"homepage": "https://vtbag.dev",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/martrapp"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.57.0",
"@types/dom-navigation": "^1.0.6",
"@types/dom-view-transitions": "^1.0.6",
"esbuild": "^0.28.0",
"prettier": "^3.7.4",
"publint": "^0.3.16",
"serve": "^14.2.5",
"typescript": "^6.0.2"
}
}