-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.49 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
{
"name": "korob",
"version": "0.2.3",
"description": "Unified development toolchain",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"korob": "dist/cli.mjs"
},
"scripts": {
"lint": "biome lint . && biome format . && prettier --check .",
"format": "biome format --write . && prettier --write .",
"build": "turbo run build:full",
"build:full": "tsup --clean",
"dev": "tsup --watch",
"prepack": "npm shrinkwrap && npm run build:full",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domin-mnd/korob.git"
},
"keywords": [
"korob",
"tsup",
"vite",
"vitest",
"biome",
"prettier",
"format",
"lint",
"bundle",
"build",
"npm"
],
"author": "domin-mnd",
"license": "MIT",
"bugs": {
"url": "https://github.com/domin-mnd/korob/issues"
},
"engines": {
"node": ">=16"
},
"homepage": "https://korob.domin.lol/",
"devDependencies": {
"@domin-mnd/config": "^0.0.3",
"@turbo/types": "^1.13.2",
"@types/node": "^20",
"defu": "^6.1.4",
"ignore": "^5.3.1",
"terser": "^5.30.0",
"turbo": "^1.13.2"
},
"dependencies": {
"@biomejs/biome": "1.6.4",
"@biomejs/js-api": "0.5.0",
"@biomejs/wasm-nodejs": "1.6.4",
"citty": "0.1.6",
"consola": "3.2.3",
"prettier": "3.2.5",
"tsup": "8.0.2"
},
"optionalDependencies": {
"typescript": "5.4.5",
"vitest": "1.5.0"
}
}