forked from SASNOVACAT08/string-to-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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": "@alsoasked/string-to-svg",
"version": "4.0.1",
"description": "Convert text to SVG path without native dependence.",
"type": "module",
"exports": {
".": {
"node": {
"types": "./dist/node.d.ts",
"require": "./dist/node.cjs",
"import": "./dist/node.js"
},
"default": {
"types": "./dist/browser.d.ts",
"require": "./dist/browser.cjs",
"import": "./dist/browser.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/browser.ts src/node.ts --dts --format cjs,esm",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/sasnovacat08/string-to-svg"
},
"keywords": [
"fonts",
"glyph",
"graphics",
"SVG",
"text",
"vector"
],
"author": "Hideki Shiro",
"contributors": [
{
"name": "Ruben Barros",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sasnovacat08/string-to-svg/issues"
},
"homepage": "https://github.com/sasnovacat08/string-to-svg",
"dependencies": {
"@alsoasked/opentype.js": "^1.0.1"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/opentype.js": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}