-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.72 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": "@mml-io/esbuild-plugin-mml",
"version": "0.2.2",
"description": "An MML plugin for esbuild.",
"homepage": "https://github.com/mml-io/esbuild-plugin-mml",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"keywords": [
"esbuild",
"plugin",
"mml",
"html",
"import"
],
"repository": {
"url": "git+https://github.com/mml-io/esbuild-plugin-mml.git"
},
"bugs": {
"url": "https://github.com/mml-io/esbuild-plugin-mml/issues"
},
"files": [
"dist"
],
"scripts": {
"build": "run-p build:*",
"build:ts": "tsx --tsconfig tsconfig.build.json build.ts",
"build:dts": "tsc -p tsconfig.d.json && copyfiles --flat ./src/mml.d.ts ./dist/types",
"clean": "rimraf dist",
"depcheck": "depcheck",
"lint": "tsc --noemit && eslint src --fix",
"prepare": "run-s clean build",
"prepublishOnly": "npm test",
"jest": "jest",
"test": "run-s lint depcheck jest"
},
"peerDependencies": {
"esbuild": "^0"
},
"devDependencies": {
"@eslint/js": "^9",
"@types/eslint__js": "^8",
"@types/jest": "^29",
"@types/node": "^22",
"copyfiles": "^2",
"depcheck": "^1",
"es-toolkit": "^1.16.0",
"esbuild": "^0",
"eslint": "^9",
"eslint-plugin-prettier": "^5",
"globals": "^15",
"jest": "^29",
"npm-run-all": "^4",
"rimraf": "^6",
"ts-jest": "^29",
"tsx": "^4",
"typescript": "^5",
"typescript-eslint": "^8"
}
}