-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "esbuild-coffeescript",
"version": "3.1.0",
"description": "Bundle CoffeeScript with Esbuild",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"ci": "$npm_execpath run check && $npm_execpath run test && $npm_execpath run build",
"prepublishOnly": "$npm_execpath run ci",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "ultracite check",
"fix": "ultracite fix",
"release": "$npm_execpath run ci && changeset publish",
"prepare": "lefthook install"
},
"keywords": [
"esbuild",
"esbuild-coffeescript",
"esbuild-plugin",
"coffeescript",
"litcoffee"
],
"author": "Johnie Hjelm <johnie@hjelm.im>",
"repository": {
"type": "git",
"url": "https://github.com/johnie/esbuild-coffeescript.git"
},
"license": "MIT",
"packageManager": "pnpm@10.29.3",
"dependencies": {
"coffeescript": "^2.7.0"
},
"peerDependencies": {
"esbuild": ">=0.25.9"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/coffeescript": "2.5.7",
"@types/node": "25.5.2",
"@vitest/coverage-v8": "4.1.4",
"lefthook": "^2.1.5",
"typescript": "6.0.2",
"ultracite": "7.4.4",
"vitest": "^4.1.4"
}
}