-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "@cubing/dev-config",
"version": "0.9.6-dev",
"description": "Common dev configs for projects.",
"author": {
"name": "Lucas Garron",
"email": "code@garron.net",
"url": "https://garron.net/"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cubing/dev-config.git"
},
"type": "module",
"exports": {
"./esbuild/es2022": {
"types": "./esbuild/es2022/index.d.ts",
"import": "./esbuild/es2022/index.js"
},
"./check-allowed-imports": {
"types": "./lib/check-allowed-imports/index.d.ts",
"default": "./lib/check-allowed-imports/index.js"
}
},
"bin": {
"package.json": "bin/package.json/index.js"
},
"dependencies": {
"esbuild": ">=0.25.3 && <1.0.0",
"path-class": ">=0.10.8",
"printable-shell-command": ">=4.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@schemastore/package": "^0.0.10",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.3",
"typescript": "^5.9.3"
},
"files": [
"./bin/",
"./biome/",
"./chunks/",
"./esbuild/",
"./lib",
"./ts/"
],
"scripts": {
"prepublishOnly": "make prepublishOnly"
}
}