-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.56 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.56 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
{
"name": "@nekm/core",
"version": "1.0.0",
"description": "Code I find myself re-writing over-and-over.",
"license": "MIT",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "vitest run",
"format": "prettier --write --cache src && eslint --fix --max-warnings=0 --cache src"
},
"maintainers": [
{
"email": "niklas@niklasekman.solutions",
"name": "Niklas Ekman",
"url": "https://www.niklasekman.solutions"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Ekman/TypeScript-Core.git"
},
"homepage": "https://github.com/Ekman/TypeScript-Core#readme",
"files": [
"dist",
"src",
"bin"
],
"author": {
"name": "Niklas Ekman",
"email": "niklas@niklasekman.solutions"
},
"keywords": [
"core",
"utility",
"multi-lib"
],
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^10",
"@types/querystringify": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^10",
"globals": "^17.4.0",
"mongodb": "^7",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5",
"vitest": "^3"
},
"dependencies": {
"empty-php": "^3",
"querystringify": "^2"
},
"peerDependencies": {
"mongodb": "^7"
},
"bin": {
"mongodb-create-indices": "./bin/mongodb-sync-indices.js"
}
}