-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 1.95 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
{
"name": "@liiift-studio/threadtext",
"version": "0.4.6",
"description": "Render any text as photorealistic procedural satin-stitch embroidery, in real time in the browser, from the font's glyph geometry",
"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",
"build:webflow": "vite build --config vite.webflow.config.ts",
"test": "vitest",
"test:run": "vitest run",
"lint": "tsc --noEmit",
"capture": "node scripts/capture/capture.mjs",
"demo": "python3 -m http.server 8080",
"prepublishOnly": "npm run test:run && npm run build && npm run build:webflow"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/react": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"happy-dom": "^20.10.6",
"next": "16.2.2",
"playwright": "^1.61.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^3.0.0"
},
"keywords": [
"typography",
"web-typography",
"embroidery",
"satin-stitch",
"cross-stitch",
"thread",
"thread-text",
"procedural",
"canvas",
"real-time",
"variable-font",
"text-effect",
"liiift-studio",
"type-tools",
"frontend",
"react",
"typescript"
],
"author": "Quinn Keaveney <quinn@liiift.studio>",
"license": "MIT",
"homepage": "https://threadtext.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Liiift-Studio/ThreadText.git"
},
"bugs": {
"url": "https://github.com/Liiift-Studio/ThreadText/issues"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}