-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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
{
"name": "v4vts",
"version": "0.3.2",
"description": "V4V calculations and transactions for Podcasting 2.0",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./calc": {
"import": "./dist/calc.js",
"require": "./dist/calc.js",
"types": "./dist/calc.d.ts"
},
"./forwarding": {
"import": "./dist/forwarding.js",
"require": "./dist/forwarding.js",
"types": "./dist/forwarding.d.ts"
},
"./sockets": {
"import": "./dist/sockets.js",
"require": "./dist/sockets.js",
"types": "./dist/sockets.d.ts"
}
},
"files": [
"dist"
],
"type": "module",
"keywords": [
"rss",
"podcasting20",
"v4v"
],
"homepage": "https://github.com/rssblue/v4vts",
"bugs": {
"url": "https://github.com/rssblue/v4vts/issues"
},
"author": "Dovydas Joksas (https://rssblue.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/rssblue/v4vts.git"
},
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.27.7",
"@types/uuid": "^10.0.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5"
},
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack .",
"test": "vitest run",
"dev": "vitest",
"lint": "tsc",
"local-release": "changeset version && changeset publish",
"ci": "pnpm run build && pnpm run check-format && pnpm run lint && pnpm run test",
"prepublishOnly": "pnpm run ci"
},
"dependencies": {
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}