-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.84 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.84 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
{
"name": "@liiift-studio/stabiltype",
"version": "1.0.7",
"description": "Motion-adaptive typography — adapts letter-spacing, weight, and optical size in real time based on motion velocity",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run test && npm run build"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"happy-dom": "^20.9.0",
"next": "^16.2.6",
"react": "^19.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^4.1.8"
},
"keywords": [
"typography",
"web-typography",
"frontend",
"liiift-studio",
"variable-font",
"font-variation-settings",
"motion",
"velocity",
"scroll-velocity",
"device-motion",
"gyroscope",
"wght",
"opsz",
"letter-spacing",
"smart-glasses",
"ar",
"xr",
"adaptive",
"zero-dependencies",
"react",
"typescript",
"css"
],
"author": "Quinn Keaveney <quinn@liiift.studio>",
"license": "MIT",
"homepage": "https://stabiltype.com",
"repository": {
"type": "git",
"url": "https://github.com/Liiift-Studio/StabilType.git"
},
"bugs": {
"url": "https://github.com/Liiift-Studio/StabilType/issues"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"overrides": {
"postcss": ">=8.5.10"
}
}