-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 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
{
"name": "@cut0/dedede-deadcode",
"version": "0.1.7",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/cut0/dedede-deadcode.git"
},
"license": "MIT",
"author": "cut0",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"format": "run-s format:eslint format:prettier",
"format:eslint": "eslint --fix --ext ts,tsx,js .",
"format:prettier": "prettier --ignore-path .prettierignore --write '**/*.{js,ts,tsx}'",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint --ext ts,tsx,js ./",
"lint:prettier": "prettier --ignore-path .prettierignore --check '**/*.{js,ts,tsx}'",
"build": "tsc --declaration --emitDeclarationOnly --declarationDir ./dist && tsx ./src/build.ts",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"minimatch": "^9.0.4",
"ts-morph": "^22.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"tsx": "^4.9.1",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@8.7.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}