-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "prototype-helper",
"version": "1.2.0",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/k22pr/prototype-helper.git"
},
"keywords": ["typescript", "prototype", "extension", "override", "helper"],
"author": "서버지기",
"license": "MIT",
"bugs": {
"url": "https://github.com/k22pr/prototype-helper/issues"
},
"homepage": "https://github.com/k22pr/prototype-helper#readme",
"dependencies": {
"decimal.js": "^10.4.1",
"deep-clone": "^3.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.0.0",
"bun-types": "^1.3.5",
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun test && tsc",
"bundle": "tsc --declaration --emitDeclarationOnly --outDir dist && bun build src/index.ts --minify --target=bun --outfile dist/index.js",
"dev": "bun --watch ./src/test.ts",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"publish": "npm publish"
}
}