-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.46 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
{
"name": "lib-template",
"version": "0.0.1",
"templateVersion": "1.4.0",
"description": "An example library",
"main": "dist/index.js",
"bin": {
"say-my-name": "bin/say-my-name"
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"copy-json-files-to-dist": "copyfiles -u 1 src/**/*.json dist/",
"style:format": "prettier \"*.{js,json,yml,yaml,md}\" \"src/**/*\" --write",
"lint": "eslint --color --ext .ts \"src/**/*.+(ts)\"",
"lint:fix": "eslint --color --ext .ts \"src/**/*.+(ts)\" --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --pretty --noEmit --skipLibCheck --esModuleInterop --resolveJsonModule",
"package": "npm run build && npm pack",
"build": "tsup",
"release": "npm run build && npm publish",
"release-local": "npm run build && npm link && echo [FINISH]: Run \"npm link lib-template\" to link the package to your project"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"bin"
],
"keywords": [
"library",
"template"
],
"repository": "https://github.com/victorsoares96/lib-template",
"author": "Victor Soares <vitorsoares96@hotmail.com> (https://github.com/victorsoares96)",
"license": "MIT",
"bugs": {
"url": "https://github.com/victorsoares96/lib-template/issues"
},
"homepage": "https://github.com/victorsoares96/lib-template#readme",
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"@vitest/coverage-istanbul": "^1.0.0",
"commitizen": "4.3.0",
"commitizen-emoji": "1.0.5",
"copyfiles": "2.4.1",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-vitest": "^0.3.0",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.1.1",
"tsup": "8.0.1",
"tsx": "4.7.0",
"typescript": "5.3.3",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "1.1.0"
},
"engines": {
"yarn": ">= 1.22.0",
"node": ">=18.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/commitizen-emoji"
},
"commitizenEmoji": {
"conventionalFormat": true
}
}
}