-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 KB
/
package.json
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
{
"name": "mm-calendar",
"version": "1.1.1",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --coverage --watchAll --verbose",
"dev": "nodemon ./src/index.ts",
"build": "tsc",
"build-watch": "tsc --watch",
"bundle": "rollup --config",
"prepublishOnly": "npm run bundle"
},
"files": ["dist"],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.esm.js"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@types/lodash": "^4.17.10",
"@types/moment": "^2.11.29",
"lodash": "^4.17.21",
"lunar-typescript": "^1.7.5",
"moment": "^2.30.1"
}
}