-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "npm-ts-template",
"version": "0.0.1",
"description": "A package template for NPM packages written in TypeScript",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "biome lint && biome format && biome check",
"lint-fix": "biome lint --write && biome format --write && biome check --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/user/repository.git"
},
"keywords": ["npm", "package", "template"],
"author": "Yor company or name here",
"license": "MIT",
"bugs": {
"url": "https://github.com"
},
"homepage": "https://github.com/user/repository#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {}
}