-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 KB
/
package.json
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
{
"name": "node-typescript-npm-library-template",
"version": "0.1.0",
"engines": {
"node": ">=18.x <=22.x",
"npm": ">=6.x"
},
"description": "Template for building Node TypeScript NPM libraries",
"homepage": "https://github.com/eiathom/node-typescript-npm-library-template",
"bugs": {
"url": "https://github.com/eiathom/node-typescript-npm-library-template/issues"
},
"repository": {
"url": "https://github.com/eiathom/node-typescript-npm-library-template",
"type": "github"
},
"main": "dist/index.js",
"module": "dist/index-esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index-esm.js",
"dist/index.d.ts"
],
"directories": {
"doc": "docs",
"test": "tests",
"lib": "src"
},
"scripts": {
"doc:generation": "rimraf docs && typedoc",
"lint:fix": "prettier --ignore-path .gitignore --write \"**/*.+(ts)\"",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(ts)\"",
"build": "rimraf dist && node esbuild.js",
"test": "jest --config jest.config.js"
},
"keywords": [
"node",
"typescript",
"library"
],
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"npm-dts": "^1.3.12",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typedoc": "0.25.0",
"typescript": "^5.3.3"
},
"dependencies": {}
}