-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.79 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-js-cron",
"version": "6.0.2",
"description": "A React cron editor with antd inspired by jqCron",
"author": "Xavier Rutayisire <xavier.rutayisire@gmail.com> (https://github.com/xrutayisire/)",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"js",
"cron",
"crontab",
"editor",
"widget",
"generator",
"antd",
"ant-design",
"cronjob",
"schedule",
"parser"
],
"homepage": "https://github.com/xrutayisire/react-js-cron#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xrutayisire/react-js-cron.git"
},
"bugs": {
"url": "https://github.com/xrutayisire/react-js-cron/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./styles.css": "./dist/styles.css",
"./dist/styles.css": "./dist/styles.css"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE.md"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "yarn@4.13.0",
"scripts": {
"build": "tsdown && cp src/styles.css dist/styles.css",
"dev": "tsdown --watch",
"storybook": "storybook dev -p 9009",
"build-storybook": "storybook build -o docs",
"lint": "oxlint src/",
"lint:fix": "oxlint --fix src/",
"prettier": "oxfmt --check src/",
"prettier:fix": "oxfmt src/",
"format": "run-s lint prettier",
"format:fix": "run-s lint:fix prettier:fix",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"antd": ">=6.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@ant-design/icons": "6.1.1",
"@storybook/addon-essentials": "8.6.18",
"@storybook/addon-interactions": "8.6.18",
"@storybook/addon-links": "8.6.18",
"@storybook/addon-webpack5-compiler-swc": "4.0.3",
"@storybook/react-webpack5": "8.6.18",
"@storybook/test": "8.6.18",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.15.29",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.1.2",
"antd": "6.3.5",
"del-cli": "7.0.0",
"jsdom": "29.0.1",
"npm-run-all2": "7.0.2",
"oxfmt": "0.43.0",
"oxlint": "1.58.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"storybook": "8.6.18",
"tsdown": "0.21.7",
"typescript": "5.9.3",
"vitest": "4.1.2"
}
}