-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.41 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@chaocore/utils",
"version": "0.1.3",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js"
},
"sideEffects": false,
"description": "The utils library for JavaScript and TypeScript.",
"files": [
"dist"
],
"scripts": {
"build": "pnpm build:clean && pnpm build:lib && pnpm build:types",
"build:lib": "rollup -c --configPlugin typescript",
"build:types": "tsc --project tsconfig.declaration.json",
"build:clean": "rimraf dist",
"all:checks": "pnpm ts:check && pnpm eslint:check && pnpm test",
"ts:check": "tsc --noEmit",
"eslint:check": "eslint .",
"test": "jest",
"prepare": "husky"
},
"lint-staged": {
"!(*test).ts": [
"pnpm tscw --noEmit",
"pnpm eslint:check"
],
"*test.ts": [
"pnpm eslint:check",
"pnpm test"
]
},
"homepage": "https://github.com/Kipicenko/chaocore-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Kipicenko/chaocore-utils.git"
},
"bugs": {
"url": "https://github.com/Kipicenko/chaocore-utils/issues"
},
"keywords": [
"utils",
"utils-library",
"helpers",
"helpers-library",
"javascript",
"typescript",
"programming"
],
"author": "Kipicenko",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@jest/globals": "^30.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.12",
"eslint": "9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"husky": "^9.1.7",
"jest": "^30.0.4",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "4.44.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"tscw-config": "^1.1.2",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "5.8.3",
"typescript-eslint": "8.36.0"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501"
}