-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "node-ts-library-template",
"version": "1.0.0",
"type": "module",
"description": "Template for production ready node ts library",
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/node-ts-library-template.git"
},
"homepage": "https://github.com/timelessco/node-ts-library-template#readme",
"bugs": {
"url": "https://github.com/timelessco/node-ts-library-template/issues"
},
"author": "Timeless <[email protected]> (https://timeless.co/)",
"license": "MIT",
"private": true,
"main": "./lib/node-ts-library-template.cjs",
"module": "./lib/node-ts-library-template.js",
"exports": {
".": {
"import": "./lib/node-ts-library-template.js",
"require": "./lib/node-ts-library-template.cjs"
}
},
"files": [
"lib"
],
"keywords": [
"ts",
"library",
"production",
"template",
"node"
],
"scripts": {
"build": "tsup",
"commit": "gacp",
"dev": "nodemon demo/main.ts",
"format": "npm-run-all format:*",
"format:eslint": "eslint --cache --color --ext .js,.cjs,.jsx,.ts,.cts,.tsx . --fix",
"format:prettier": "prettier --write --cache --cache-location=.prettiercache --list-different \"./**/*.{html,css,js,cjs,jsx,ts,cts,tsx,md,json}\"",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --cache --color --ext .js,.cjs,.jsx,.ts,.cts,.tsx .",
"lint:prettier": "prettier --check --cache --cache-location=.prettiercache \"./**/*.{html,css,js,cjs,jsx,ts,cts,tsx,md,json}\"",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "pinst --disable",
"release": "release-it",
"release:dryrun": "release-it --dry-run",
"test": "echo \"no test specified\" && exit 0"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@ianvs/prettier-plugin-sort-imports": "4.0.2",
"@release-it/conventional-changelog": "7.0.0",
"@types/node": "18.16.20",
"eslint": "8.44.0",
"eslint-config-galex": "4.5.2",
"gacp": "3.0.3",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"nodemon": "2.0.22",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"prettier": "2.8.8",
"prettier-plugin-pkg": "0.17.1",
"release-it": "16.0.0",
"ts-node": "10.9.1",
"tsup": "7.1.0",
"typescript": "5.1.6"
},
"sideEffects": false,
"browserslist": {
"production": [
">0.2%",
"last 2 versions",
"Firefox ESR",
"not dead"
],
"development": [
"last 2 versions",
"not dead"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"gacp": {
"add": false,
"push": false,
"emoji": "emoji",
"editor": false
},
"lint-staged": {
"**/*.{js,cjs,jsx,ts,cts,tsx}": [
"pnpm lint:eslint"
],
"**/*.{html,css,js,cjs,jsx,ts,cts,tsx,md,json}": [
"pnpm lint:prettier"
]
},
"source": "./src/index.js"
}