-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "4dev",
"version": "1.0.0",
"description": "4DEV is a comprehensive toolkit catering to various development needs, with a predominant focus on web development 🛠️",
"author": "Raja Rakotonirina <[email protected]>",
"license": "MIT",
"type": "module",
"module": "index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/4dev.git"
},
"homepage": "https://github.com/RajaRakoto/4dev#readme",
"bugs": "https://github.com/RajaRakoto/4dev/issues",
"files": ["dist"],
"keywords": [
"mobile",
"collection",
"web",
"tools",
"frontend",
"backend",
"script",
"desktop",
"dev",
"developer-tools",
"fullstack",
"all-in-one"
],
"engines": {
"bun": ">= 1.0.26"
},
"scripts": {
"start": "bun dist/index.js",
"start:smol": "bun --smol dist/index.js",
"start:bin": "./dist/bun-boilerplate",
"clean": "rimraf build dist coverage",
"dev": "bun run src/index.ts",
"dev:watch": "bun --watch run src/index.ts",
"dev:hot": "bun --hot run src/index.ts",
"dev:smol:watch": "bun --smol --watch run src/index.ts",
"dev:smol:hot": "bun --smol --hot run src/index.ts",
"build": "bun run clean && bun run build.js",
"build:watch": "bun build src/index.ts --outdir dist --watch",
"build:bin": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/bun-boilerplate",
"test": "bun test",
"test:watch": "bun test --watch",
"biome:start": "biome start",
"biome:stop": "biome stop",
"biome:fix": "biome check --fix .",
"biome:unsafe": "biome check --fix --unsafe .",
"backup": "grunt backup",
"pkg-check": "depcheck",
"pkg-upgrade": "ncu --interactive --format group --packageManager bun",
"versioning": "ungit",
"npm-version:major": "npm version major",
"npm-version:minor": "npm version minor",
"npm-version:patch": "npm version patch"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "latest",
"@types/jest": "^29.5.12",
"bun-plugin-dts": "^0.2.3",
"depcheck": "^1.4.7",
"grunt": "^1.6.1",
"grunt-contrib-compress": "^2.0.0",
"jest": "^29.7.0",
"load-grunt-tasks": "^5.1.0",
"npm-check-updates": "^17.0.5",
"rimraf": "^6.0.1",
"ts-api-utils": "^1.3.0",
"ts-jest": "^29.2.4",
"ungit": "^1.5.26"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}