-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.34 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
{
"name": "sync-op",
"version": "0.6.1",
"description": "CML-like first-class synchronous operations",
"author": "h11 <me@h11.dev>",
"license": "LGPL-2.1",
"homepage": "https://github.com/dhcmrlchtdj/sync-op",
"repository": "github:dhcmrlchtdj/sync-op",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"keywords": [
"cml",
"concurrent-ml",
"channel"
],
"devDependencies": {
"@jest/globals": "29.7.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "5.6.3"
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": true,
"semi": false,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "ignore",
"vueIndentScriptAndStyle": true,
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto",
"singleAttributePerLine": true,
"plugins": [
"prettier-plugin-organize-imports"
]
},
"dependencies": {
"oxlint": "0.11.1"
}
}