-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@ulfsoft/ulfkit",
"version": "0.0.3",
"description": "A toolkit for building resilient and scalable applications.",
"private": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup src/index.ts --dts --format esm,cjs --out-dir dist",
"build:watch": "tsup src/index.ts --dts --format esm,cjs --out-dir dist --watch",
"typecheck": "tsc --noEmit -p tsconfig.json",
"clean": "rimraf dist",
"lint": "biome check .",
"test": "vitest --run",
"format": "biome format . --write",
"ci": "pnpm install && pnpm run lint && pnpm run typecheck && pnpm run test"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ulfsoft/ulfkit.git"
},
"bugs": {
"url": "https://github.com/ulfsoft/ulfkit/issues"
},
"homepage": "https://github.com/ulfsoft/ulfkit#readme",
"keywords": [],
"author": {
"name": "Krzysztof Begiedza",
"email": "contact@kbegiedza.eu",
"url": "https://ulfsoft.com"
},
"license": "Apache-2.0",
"packageManager": "pnpm@10.18.0",
"devDependencies": {
"@biomejs/biome": "2.2.4",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^3.2.4"
}
}