-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1007 Bytes
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
{
"name": "weft",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"weft": "./dist/weft.mjs"
},
"scripts": {
"check": "tsc --noEmit",
"build": "bun build src/cli/index.ts --outfile dist/weft.mjs",
"prepublishOnly": "bun run build",
"postinstall": "bun run build",
"lint": "oxlint; eslint",
"lint:ox": "oxlint",
"lint:fp": "eslint",
"lint:fix": "oxlint --fix; eslint --fix",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"test": "bun test"
},
"dependencies": {
"mustache": "^4.2.0",
"neverthrow": "^8.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/mustache": "^4.2.0",
"eslint": "^9.0.0",
"eslint-plugin-boundaries": "^5.0.0",
"eslint-plugin-functional": "^9.0.0",
"eslint-plugin-oxlint": "^1.51.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.0",
"fast-check": "^3.0.0",
"oxlint": "^1.0.0",
"oxlint-tsgolint": "^0.16.0",
"typescript": "^5.5.0"
}
}