-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "vite-plugin-ts-nameof",
"version": "3.0.0",
"description": "Give Vite the ability to resolve 'nameof' calls in TypeScript",
"scripts": {
"clean": "rimraf .eslintcache dist pnpm-lock.yaml node_modules",
"build": "tsup-node",
"format": "prettier --cache --write .",
"lint": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
"ts-check": "tsc --noEmit",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"preflight": "pnpm install && run-s format lint build ts-check"
},
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
}
},
"keywords": [
"vite",
"vite-plugin",
"ts-nameof",
"nameof",
"plugin",
"typescript",
"vitejs",
"awesome"
],
"author": {
"name": "Christopher Quadflieg",
"email": "[email protected]",
"url": "https://github.com/Shinigami92"
},
"repository": {
"type": "git",
"url": "https://github.com/Shinigami92/vite-plugin-ts-nameof.git"
},
"bugs": "https://github.com/Shinigami92/vite-plugin-ts-nameof/issues",
"license": "MIT",
"files": [
"lib",
"src",
"tsconfig.json"
],
"dependencies": {
"@typescript-nameof/nameof": "~0.0.7"
},
"devDependencies": {
"@eslint-types/prettier": "~5.1.3",
"@eslint-types/typescript-eslint": "~6.21.0",
"@types/node": "~20.11.20",
"@typescript-eslint/eslint-plugin": "~7.0.2",
"@typescript-eslint/parser": "~7.0.2",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-define-config": "~2.1.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-prettier": "~5.1.3",
"npm-run-all2": "~6.1.2",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "~3.2.4",
"rimraf": "~5.0.5",
"tsup": "~8.0.2",
"typescript": "~5.3.3",
"vite": "~5.1.4"
},
"peerDependencies": {
"@typescript-nameof/common-types": "^0.0.7",
"@typescript-nameof/types": "^0.0.7",
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "^16.13.0 || >=18.0.0",
"npm": ">=7.0.0",
"pnpm": ">=8.6.0"
}
}