-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
71 lines (71 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "calendar-base",
"description": "Base methods for generating calendars using JavaScript.",
"version": "2.0.1",
"author": "Wes Souza <hey@wes.dev> (https://wes.dev/)",
"license": "MIT",
"keywords": [
"calendar",
"generation",
"base",
"core"
],
"repository": {
"type": "git",
"url": "https://github.com/WesSouza/calendar-base"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "rollup -c .config/rollup.config.js",
"check:format": "prettier --config .config/.prettierrc --check ./src ./test",
"check:types": "tsc -p .config/tsconfig.json --noEmit",
"coverage": "vitest run -c .config/vite.config.ts --coverage",
"format": "prettier --config .config/.prettierrc --write ./src ./test",
"lint": "eslint -c .config/.eslintrc .",
"prepare": "yarn run build",
"test:ci": "vitest run -c .config/vite.config.ts --coverage",
"test:ui": "vitest watch -c .config/vite.config.ts --ui",
"test:watch": "vitest watch -c .config/vite.config.ts",
"test": "vitest run -c .config/vite.config.ts"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^18.19.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^2.1.6",
"@vitest/ui": "^2.1.6",
"esbuild": "^0.24.0",
"eslint": "^8.56.0",
"import-sort-style-wes": "^3.0.2",
"prettier": "2.8.4",
"prettier-plugin-import-sort": "^0.0.7",
"rollup": "^4.28.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-replace": "^2.2.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5",
"vite": "^5.1.8",
"vitest": "^2.1.6"
},
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "wes"
},
".ts, .tsx": {
"parser": "typescript",
"style": "wes"
}
}
}