-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1013 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1013 Bytes
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
{
"name": "clipgen",
"version": "3.1.0",
"description": "A web clip and adhoc config generator.",
"keywords": [
"ios",
"webclip",
"adhoc",
"generator"
],
"license": "GPL-3.0-only",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/browser.js",
"exports": {
"browser": "./dist/browser.js",
"import": "./dist/index.js"
},
"scripts": {
"dev": "bun test --watch",
"build:lib": "tsdown",
"build:docs": "typedoc --options typedoc.json",
"build": "bun build:lib && bun build:docs",
"check": "bunx @biomejs/biome check"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/bun": "1.3.12",
"tsdown": "0.21.8",
"typedoc-github-theme": "0.4.0"
},
"dependencies": {
"@plist/plist": "1.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/itss0n1c/clipgen.git"
},
"bugs": {
"url": "https://github.com/itss0n1c/clipgen/issues"
},
"homepage": "https://s0n1c.ca/clipgen"
}