-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "npm-package-template",
"version": "4.0.0",
"author": "Ram Amoncar",
"repository": {
"type": "git",
"url": "https://github.com/Ram-Amoncar/npm-package-template.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.8.0",
"@types/jest": "^29.5.13",
"eslint-config-love": "^110.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.5.4"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
}
},
"browser": "./dist/index.min.js",
"description": "A template for NPM package in Typescript",
"files": [
"dist"
],
"keywords": [
"npm",
"bun",
"typescript",
"template",
"typescript project",
"npm package template"
],
"license": "UNLICENSED",
"scripts": {
"prepare": "husky",
"build": "tsup",
"test": "jest --config ./jest.config.ts",
"test:watch": "jest --watch --config ./jest.config.ts",
"coverage": "jest --coverage --config ./jest.config.ts",
"format": "prettier -w . --config .prettierrc",
"format:check": "prettier -c . --config .prettierrc",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"type": "module",
"types": "./dist/index.d.ts"
}