-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "solid-codemod",
"version": "2.4.0",
"description": "Codemod scripts for SolidJS JavaScript library",
"homepage": "https://github.com/solidjs-community/solid-codemod",
"license": "MIT",
"type": "module",
"bin": {
"solid-codemod": "bin/solid-codemod.js"
},
"scripts": {
"test": "solid-codemod",
"release": "node ./release.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/solid-codemod.git"
},
"dependencies": {
"@types/jscodeshift": "^17.3.0",
"@types/node": "^22.15.21",
"chalk": "^5.4.1",
"cli-diff": "^1.0.0",
"jscodeshift": "^17.3.0",
"prettier": "^3.5.3",
"solid-js": "^2.0.0-experimental.5",
"typescript": "^5.8.3"
},
"prettier": {
"printWidth": 70,
"useTabs": true,
"semi": false,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid",
"proseWrap": "never",
"endOfLine": "lf",
"singleAttributePerLine": true,
"embeddedLanguageFormatting": "off"
}
}