-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "@bytesbrains/{{PACKAGE_NAME}}",
"version": "0.1.0",
"description": "{{DESCRIPTION}}",
"keywords": [
"bytesbrains"
],
"author": "BytesBrains Pte Ltd (https://bytesbrains.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bytesbrains/{{PACKAGE_NAME}}.git"
},
"homepage": "https://github.com/bytesbrains/{{PACKAGE_NAME}}#readme",
"bugs": {
"url": "https://github.com/bytesbrains/{{PACKAGE_NAME}}/issues"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js",
"test": "vitest run",
"dev": "tsx --watch src/index.ts",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"esbuild": "^0.28.1",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10",
"@types/node": "^24.0.0"
},
"publishConfig": {
"access": "public"
}
}