-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.97 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": "@feature-sliced/filesystem",
"version": "3.1.0",
"description": "A set of utilities for locating and working with FSD roots in the file system.",
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --clean",
"watch": "npm run build -- --watch src",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"lint": "eslint",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@total-typescript/ts-reset": "^0.6.1",
"@tsconfig/node-lts": "^22.0.1",
"@types/node": "^22.14.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript-eslint": "^8.30.1",
"vitest": "^3.1.1"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"keywords": [
"feature-sliced",
"filesystem",
"layers",
"slices",
"segments"
],
"license": "ISC",
"homepage": "https://github.com/feature-sliced/filesystem",
"bugs": "https://github.com/feature-sliced/filesystem/issues",
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"package.json"
],
"dependencies": {
"typescript": "^5.8.3"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.ts": "eslint --fix"
},
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}