-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.94 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.94 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
75
76
77
78
79
80
81
82
83
{
"name": "@ukwhatn/wikidot",
"version": "4.4.0",
"description": "TypeScript library for interacting with Wikidot sites",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./errors": {
"import": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.js"
},
"require": {
"types": "./dist/errors.d.cts",
"default": "./dist/errors.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "bunup",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:cov": "bun test --coverage",
"test:unit": "bun test tests/unit/",
"test:unit:cov": "bun test tests/unit/ --coverage",
"test:integration": "bun test tests/integration/",
"test:integration:cov": "bun test tests/integration/ --coverage",
"prepublishOnly": "bun run build"
},
"keywords": [
"wikidot",
"scp",
"api",
"client"
],
"author": "ukwhatn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ukwhatn/wikidot-ts.git"
},
"bugs": {
"url": "https://github.com/ukwhatn/wikidot-ts/issues"
},
"homepage": "https://github.com/ukwhatn/wikidot-ts#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"cheerio": "^1.2.0",
"ky": "^1.14.3",
"neverthrow": "^8.2.0",
"p-limit": "^7.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/bun": "^1.3.11",
"bunup": "^0.16.31",
"typescript": "^6.0.2"
},
"peerDependencies": {
"typescript": "^5 || ^6"
}
}