-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.43 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.43 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
{
"name": "@sect/webpack-sweet-entry",
"version": "8.0.1",
"description": "Multiple entry points with glob pattern / Partial files with underscore / Preserve directory structure",
"engines": {
"node": ">=20.0.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"build": "tsup",
"type-check": "tsc --noEmit --pretty",
"type-check:watch": "npm run type-check -- --watch",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint --ext .ts src src/__tests__",
"lint:fix": "eslint --fix --ext .ts src src/__tests__",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish",
"prepublishOnly": "npm run build && npm test && npm run lint"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sectsect/webpack-sweet-entry.git"
},
"keywords": [
"webpack"
],
"author": "SECT",
"license": "MIT",
"bugs": {
"url": "https://github.com/sectsect/webpack-sweet-entry/issues"
},
"homepage": "https://github.com/sectsect/webpack-sweet-entry#readme",
"browserslist": "> 1%, last 1 versions",
"eslintIgnore": [
"/vitest.config.ts"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@spotify/tsconfig": "^15.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.9",
"@vitest/ui": "^3.2.4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"fast-glob": "^3.3.3"
},
"files": [
"dist/**/*"
]
}