-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.49 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
58
59
60
61
62
63
64
{
"name": "@tolga1452/toolbox.js",
"version": "3.0.3",
"description": "A collection of useful functions for JavaScript & Typescript.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint src/**/*",
"check": "pnpm lint && pnpm test",
"exports": "node scripts/exports.js",
"build:lib": "tsc",
"build:types": "tsc --project types.tsconfig.json",
"build": "pnpm exports && pnpm build:lib && pnpm build:types",
"prepare": "pnpm exports && pnpm check"
},
"keywords": [
"javascript",
"js",
"typescript",
"ts",
"tool",
"box",
"toolbox",
"function",
"useful",
"npm",
"node",
"package",
"module",
"collection",
"possibility",
"color"
],
"author": "Tolgchu",
"license": "CC-BY-NC-ND-4.0",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/jest": "^29.5.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.36.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Tolga1452/toolbox.js.git"
},
"homepage": "https://github.com/Tolga1452/toolbox.js#readme",
"bugs": {
"url": "https://github.com/Tolga1452/toolbox.js/issues"
}
}