-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "@feature-sliced/filesystem",
"version": "2.4.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 --cache .",
"format": "prettier --write . --cache",
"test": "vitest",
"prepare": "husky"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"vitest": "^1.6.0"
},
"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.4.5"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.ts": "eslint --fix"
}
}