-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.26 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.26 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
{
"name": "@make-everything-simple/verify-npm-template-typescript",
"version": "0.0.1",
"description": "Verify typescript template to build npm package",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsup --config ./configs/tsup.config.ts",
"start": "npm run build && node dist/index.js",
"start:watch": "tsup src/index.ts --config ./configs/tsup.config.ts --watch --onSuccess 'node dist/index.js'",
"pretest": "rimraf coverage",
"test": "jest --config ./configs/jest.config.ts",
"lint": "eslint \"{src,tests}/**/*.ts\" --config ./configs/.eslintrc.js",
"lint:fix": "npm run lint -- --fix",
"prettier:format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"configs/**/*\" --config configs/.prettierrc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lengocduy/verify-npm-template-typescript.git"
},
"keywords": [
"npm",
"template",
"npm-typescript",
"package-template"
],
"author": "Le Ngoc Duy",
"license": "MIT",
"bugs": {
"url": "https://github.com/lengocduy/verify-npm-template-typescript.git/issues"
},
"homepage": "https://github.com/lengocduy/verify-npm-template-typescript.git#readme",
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"node-notifier": "^10.0.1",
"prettier": "3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"configs/**/*\" --config configs/.prettierrc --ignore-unknown"
},
"engines": {
"node": ">=18.0.0"
}
}