-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.04 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
{
"type": "module",
"scripts": {
"prepare": "tshy",
"pretest": "npm run prepare",
"test": "node dist/esm/index.js"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@ltd/j-toml": "^1.38.0",
"@types/ini": "^4.1.0",
"@types/js-yaml": "^4.0.9",
"ini": "^4.1.2",
"js-yaml": "^4.1.0",
"polite-json": "^4.0.1",
"smol-toml": "^1.1.4",
"toml-nodejs": "^0.3.1",
"tshy": "^1.14.0",
"yaml": "^2.4.2"
},
"prettier": {
"experimentalTernaries": true,
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"tshy": {
"dialects": [
"esm"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
}
}