-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "@lilbunnyrabbit/npm-package-template",
"version": "1.0.3",
"description": "Template repository for creating `npm` packages.",
"keywords": [
"node",
"npm",
"javascript",
"typescript"
],
"homepage": "https://github.com/lilBunnyRabbit/npm-package-template#readme",
"bugs": {
"url": "https://github.com/lilBunnyRabbit/npm-package-template/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lilBunnyRabbit/npm-package-template.git"
},
"license": "MIT",
"author": "Andraž Mesarič-Sirec <[email protected]>",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}