-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.77 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "star-spangled-banner",
"version": "1.0.0",
"description": "Generator of customizable SVG displays of the US flag",
"type": "module",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
},
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.cjs"
}
},
"./stars": {
"import": {
"types": "./dist/stars.d.ts",
"default": "./dist/stars.js"
},
"require": {
"types": "./dist/stars.d.cts",
"default": "./dist/stars.cjs"
}
},
"./geometry": {
"import": {
"types": "./dist/geometry.d.ts",
"default": "./dist/geometry.js"
},
"require": {
"types": "./dist/geometry.d.cts",
"default": "./dist/geometry.cjs"
}
},
"./svg": {
"import": {
"types": "./dist/svg.d.ts",
"default": "./dist/svg.js"
},
"require": {
"types": "./dist/svg.d.cts",
"default": "./dist/svg.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gouvernathor/ts-spangled-banner.git"
},
"keywords": [
"flag",
"svg",
"usa"
],
"author": "Gouvernathor",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Gouvernathor/ts-spangled-banner/issues"
},
"homepage": "https://github.com/Gouvernathor/ts-spangled-banner#readme",
"funding": "https://ko-fi.com/gouvernathor",
"devDependencies": {
"@types/node": "^22.10.2",
"tsup": "^8.3.5",
"typescript": "*"
}
}