-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 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
{
"name": "@mrtimeey/everybodycodes-data",
"version": "1.4.1",
"description": "Simple client for fetching data and submitting answers",
"type": "module",
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rimraf dist",
"docs": "typedoc",
"docs:clean": "rimraf docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --max-warnings=0",
"test": "vitest run",
"dev:test": "vitest",
"prepublishOnly": "npm run build && npm run docs",
"api:extract": "npm run build && api-extractor run --local",
"build": "tsup",
"postbuild": "api-extractor run --verbose"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@microsoft/api-extractor": "^7.54.0",
"@microsoft/tsdoc": "^0.15.1",
"@types/node": "^24.10.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"undici": "^7.16.0",
"vitest": "^4.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrTimeey/everybodycodes-data.git"
},
"keywords": [
"everybody-codes"
],
"author": "MrTimeey",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrTimeey/everybodycodes-data/issues"
},
"homepage": "https://github.com/MrTimeey/everybodycodes-data#readme"
}