-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.94 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.94 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
{
"private": true,
"name": "@cichol/packages",
"description": "The centralized repository of npm packages for personal projects.",
"homepage": "https://github.com/morrighan/packages",
"bugs": {
"url": "https://github.com/morrighan/packages/issues"
},
"author": {
"name": "Yongbin Min",
"email": "contact@cichol.com",
"url": "https://www.cichol.com/"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/morrighan/packages.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:individual && npm run build:rollup && npm run build:dts",
"build:individual": "npm run build --workspaces --if-present",
"build:rollup": "npx rollup --config --silent",
"build:dts": "node scripts/typings.js",
"test": "npm run test:eslint && npm run test:tsc && npm run test:vitest",
"test:eslint": "npx eslint .",
"test:tsc": "find packages/* -mindepth 0 -maxdepth 0 -type d -exec sh -c \"npx tsc --project {} --noEmit\" \\;",
"test:vitest": "npx vitest run",
"version": "npm version \"$(git symbolic-ref --short HEAD | sed 's/.*\\///')\" --workspaces"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.3",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime-corejs3": "^7.29.2",
"@cichol/eslint-config": "file:./packages/eslint-config",
"@microsoft/api-extractor": "^7.58.7",
"@rolldown/plugin-babel": "^0.2.3",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/babel__core": "^7.20.5",
"@types/babel__helper-plugin-utils": "^7.10.3",
"@types/chroma-js": "^3.1.2",
"@types/luxon": "^3.7.1",
"@types/morgan": "^1.9.10",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^4.1.5",
"babel-plugin-polyfill-corejs3": "^0.14.2",
"core-js-pure": "^3.49.0",
"eslint": "^9.39.4",
"execa": "^9.6.1",
"ora": "^9.4.0",
"rollup": "^4.60.2",
"tsc-alias": "^1.8.17",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"overrides": {
"@cichol/eslint-config": {
"eslint-config-airbnb": {
"eslint": "$eslint",
"eslint-config-airbnb-base": {
"eslint": "$eslint"
},
"eslint-plugin-react-hooks": "^7.1.1"
},
"eslint-config-airbnb-base": {
"eslint": "$eslint"
}
},
"@cichol/logger": {
"cls-rtracer": {
"uuid": "^14.0.0"
}
}
},
"engines": {
"node": "^24.15.0",
"npm": "^11.12.1"
}
}