-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.09 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
{
"name": "@daryl-software/ts-tools",
"version": "1.4.0",
"description": "Typescript tools, linter, formatter...",
"bin": {
"font-awesome-codegen": "./dist/tools/font-awesome-codegen.js"
},
"files": [
"config/**/*",
"tools/**/*",
"dist/**/*"
],
"scripts": {
"build": "tsc --project tsconfig-build.json",
"prepublishOnly": "pnpm run build",
"local-release": "changeset version && changeset publish",
"node-reset": "source ~/.nvm/nvm.sh; rm -rf node_modules pnpm-lock.yaml .pnpm-store .npm; nvm i; corepack enable && corepack use pnpm@latest && pnpm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daryl-software/ts-tools.git"
},
"keywords": [
"typescript",
"eslint",
"prettier"
],
"type": "module",
"optionalDependencies": {
"@fortawesome/fontawesome-common-types": "7.2.0",
"@vitest/eslint-plugin": "1.6.9",
"@vue/eslint-config-prettier": "10.2.0",
"eslint-plugin-vue": "10.8.0",
"globals": "17.3.0",
"ts-morph": "27.0.2",
"vitest": "4.0.18",
"vue-eslint-parser": "10.4.0"
},
"author": "Florian Morello",
"license": "MIT",
"bugs": {
"url": "https://github.com/daryl-software/ts-tools/issues"
},
"homepage": "https://github.com/daryl-software/ts-tools#readme",
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4",
"devDependencies": {
"@changesets/cli": "2.29.8",
"@eslint/js": "10.0.1",
"@eslint/json": "1.0.1",
"@types/node": "25.3.0",
"deepmerge-ts": "7.1.5",
"eslint": "9.38.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-playwright": "2.7.1",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unused-imports": "4.4.1",
"eslint-plugin-yml": "3.3.0",
"jiti": "2.6.1",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.46.2"
},
"prettier": "./config/prettier.config.mjs"
}