-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "capkit",
"version": "0.5.22",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"capkit": "dist/index.js"
},
"scripts": {
"dev": "tsup src/index.ts src/scripts/syncnetworkconfig.ts --format esm --dts --watch",
"build": "tsup src/index.ts src/scripts/syncnetworkconfig.ts --format esm --dts",
"lint": "prettier --check . && eslint .",
"lint:write": "prettier --write . && eslint . --fix",
"format": "prettier --write .",
"check": "tsc --noEmit",
"release": "pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Hugos68/capkit"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"CLI",
"Svelte",
"SvelteKit",
"Capacitor"
],
"author": {
"name": "Hugo Korte",
"url": "https://github.com/Hugos68"
},
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^11.0.0",
"kleur": "^4.1.5",
"prettier": "^3.0.3"
},
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint-config-prettier": "^9.0.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"files": [
"dist",
"scripts/*"
]
}