-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.92 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@knighted/display-name",
"version": "1.0.0",
"description": "Codemod to add a React displayName to function components.",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/displayName.d.ts",
"default": "./dist/displayName.js"
},
"require": {
"types": "./dist/cjs/displayName.d.cts",
"default": "./dist/cjs/displayName.cjs"
},
"default": "./dist/displayName.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20.11.0"
},
"engineStrict": true,
"scripts": {
"build": "duel",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"prettier": "prettier -w .",
"prepack": "npm run build",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov tsx --test --test-reporter=spec test/*.ts",
"test:check-types": "tsc --noEmit --project test/tsconfig.json"
},
"keywords": [
"codemod",
"react",
"displayName",
"function component"
],
"files": [
"dist"
],
"author": "KCM <knightedcodemonkey@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/knightedcodemonkey/display-name.git"
},
"bugs": {
"url": "https://github.com/knightedcodemonkey/display-name/issues"
},
"dependencies": {
"@knighted/walk": "^1.0.0-rc.2",
"magic-string": "^0.30.17",
"oxc-parser": "^0.69.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@knighted/duel": "^2.1.4",
"@types/node": "^22.15.14",
"@types/react": "^19.1.3",
"c8": "^10.1.3",
"eslint": "^9.26.0",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.5.3",
"react": "^19.1.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 90,
"semi": false,
"singleQuote": true
}
}