-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.01 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.01 KB
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": "@nutriot/bandcamp-api",
"version": "0.5.5",
"description": "TypeScript library for interacting with the Bandcamp API",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./schema/valibot": {
"import": "./lib/schema/valibot.js",
"require": "./lib/schema/valibot.cjs"
},
"./schema/zod": {
"import": "./lib/schema/zod.js",
"require": "./lib/schema/zod.cjs"
}
},
"types": "./lib/index.d.ts",
"files": [
"lib/",
"types/",
"LICENSE",
"README.md"
],
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nutriot/bandcamp-api.git"
},
"keywords": [
"bandcamp",
"bandcamp-api"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch",
"fix": "eslint --fix ./src",
"lint:code": "biome check --config-path=biome.jsonc --no-errors-on-unmatched --vcs-enabled=true --vcs-use-ignore-file=true",
"lint:deps": "knip --production",
"lint": "concurrently --prefix '{name}' -c 'blue,green' 'npm:lint:*'",
"prepack": "npm run build",
"prepare": "lefthook install",
"publish:npm": "np --no-yarn",
"publish:jsr": "deno publish",
"start": "npm run dev",
"test": "uvu --require tsm tests"
},
"dependencies": {
"valibot": "^1.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"concurrently": "^9.1.2",
"is-in-ci": "^1.0.0",
"knip": "^5.56.0",
"lefthook": "^1.11.13",
"log-symbols": "^7.0.0",
"np": "^10.2.0",
"tslib": "^2.8.1",
"tsm": "^2.3.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"uvu": "^0.5.6"
},
"packageManager": "pnpm@9.1.2+sha512.127dc83b9ea10c32be65d22a8efb4a65fb952e8fefbdfded39bdc3c97efc32d31b48b00420df2c1187ace28c921c902f0cb5a134a4d032b8b5295cbfa2c681e2"
}