-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.17 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.17 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
{
"name": "bun-plugin-coffeescript",
"version": "0.2.0",
"description": "Use CoffeeScript with Bun, old meets new",
"license": "MIT",
"author": "Jan T. Sott",
"repository": {
"type": "git",
"url": "git+https://github.com/idleberg/bun-plugin-coffeescript.git"
},
"keywords": [
"bun",
"bun-plugin",
"coffeescript",
"coffee-script",
"cson"
],
"type": "module",
"exports": {
".": {
"bun": "./src/index.ts",
"import": "./src/index.ts"
}
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20"
},
"files": [
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "concurrently --prefix-colors blue,magenta npm:lint:*",
"lint:biome": "biome check",
"lint:e18e": "e18e-cli analyze",
"prepack": "npm run lint",
"publish:jsr": "deno publish",
"publish:npm": "np --any-branch",
"test": "bun test"
},
"dependencies": {
"coffeescript": "^2.7.0",
"cson-parser": "^4.0.9"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@e18e/cli": "^0.3.1",
"@idleberg/configs": "^0.3.3",
"@types/coffeescript": "^2.5.7",
"bun-types": "^1.3.2",
"concurrently": "^9.2.1",
"np": "^10.2.0"
}
}