-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.81 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": "@dawiidio/pli",
"version": "1.0.1",
"description": "create CLI for any project within a few minutes with Pli and keep it along with your project!",
"author": {
"email": "dawid@dawiid.io",
"name": "Dawid Wojda",
"url": "https://dawiid.io/"
},
"bin": {
"pli": "lib/index.js"
},
"type": "module",
"main": "lib/exports.js",
"types": "lib/exports.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dawiidio/pli"
},
"publishConfig": {
"access": "public"
},
"private": false,
"keywords": [
"rss",
"itunes",
"podcast",
"rss2",
"xml",
"parser"
],
"files": [
"lib",
"package.json"
],
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"watch": "tsc -p ./tsconfig.json --watch",
"watch-alias": "tsc-alias -p ./tsconfig.json --watch",
"start": "node lib/index.js",
"build": "npm run build:node",
"build:node": "tsc -p ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"test": "vitest"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^18.15.3",
"@types/yargs": "^17.0.22",
"rollup-plugin-typescript-paths": "^1.3.0",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.4.0",
"typescript": "^5.5.2",
"vite": "5.2.6",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.25.3"
},
"packageManager": "yarn@1.22.19",
"peerDependencies": {
"typescript": "^5.5.2"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@biomejs/biome": "^1.8.3",
"@dawiidio/tools": "0.7.3",
"@types/inquirer": "^9.0.3",
"commander": "^10.0.0",
"inquirer": "^9.3.3",
"ts-node": "^10.9.1",
"vite-plugin-biome": "^1.0.12",
"yargs": "^17.7.1"
}
}