-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "clipgen",
"version": "3.0.1",
"description": "A web clip and adhoc config generator.",
"keywords": ["ios", "webclip", "adhoc", "generator"],
"license": "MIT",
"type": "module",
"files": ["dist"],
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build:docs": "typedoc --options typedoc.json",
"build": "tsc && vite build && bun run build:docs",
"preview": "vite preview"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.7",
"typedoc-github-theme": "^0.2.1",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-dts": "4.5.0"
},
"dependencies": {
"@plist/plist": "1.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/itss0n1c/clipgen.git"
},
"bugs": {
"url": "https://github.com/itss0n1c/clipgen/issues"
},
"homepage": "https://s0n1c.ca/clipgen"
}