generated from lukeed/typescript-module
-
-
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) · 2.09 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.09 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": "dpaste-ts",
"version": "3.0.0",
"description": "Nodejs wrapper for dpaste.com written using Typescript",
"keywords": [
"dpaste",
"pastebin",
"wrapper"
],
"homepage": "https://github.com/MRDGH2821/dpaste-ts#readme",
"bugs": {
"url": "https://github.com/MRDGH2821/dpaste-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MRDGH2821/dpaste-ts.git"
},
"funding": {
"type": "individual",
"url": "https://ko-fi.com/mrdgh2821"
},
"license": "MIT",
"author": {
"name": "MRDGH2821",
"url": "https://bit.ly/mrdgh2821"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"attw": "attw -P",
"prebuild": "npm run generate-syntax",
"build": "tsup",
"generate-syntax": "node ./buildLib/generateSyntaxTypes.cjs",
"lint": "npx eslint . --fix --ignore-path .gitignore ",
"lint:mega": "npx mega-linter-runner@latest --flavor javascript",
"prepublishOnly": "npm run build",
"pretty": "npx prettier . --write --ignore-path .gitignore",
"test": "node --env-file .env jest.config.js && npx jest"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.2",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@jest/globals": "^29.7.0",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"esbuild-plugin-file-path-extensions": "^1.0.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"prettier-config-mrdgh2821": "^3.0.0",
"prettier-plugin-packagejson": "^2.4.6",
"terser": "^5.24.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">= 18"
},
"readme": "readme.md"
}