-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
63
64
{
"name": "sync-op",
"version": "0.8.0",
"description": "Concurrent ML style first-class synchronous operations for JavaScript.",
"author": "h11 <[email protected]>",
"license": "LGPL-2.1",
"homepage": "https://github.com/dhcmrlchtdj/sync-op",
"repository": {
"type": "git",
"url": "git+https://github.com/dhcmrlchtdj/sync-op.git"
},
"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",
"oxlint": "0.13.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "5.7.2"
},
"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"
]
},
"packageManager": "[email protected]+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a"
}