-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.11 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.11 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
{
"name": "patternier",
"version": "0.0.3",
"type": "module",
"license": "MIT",
"bin": {
"patternier": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js"
},
"./pattern/fsd": {
"import": "./dist/pattern/fsd.js"
}
},
"scripts": {
"dev": "tsx src/cli.ts",
"inspect": "tsx src/cli.ts inspect",
"build": "tsup",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@types/node": "^25.2.1",
"@types/picomatch": "^4.0.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@swc/core": "^1.15.11",
"@swc/helpers": "^0.5.18",
"@vue/compiler-sfc": "^3.5.12",
"ignore": "^6.0.2",
"picomatch": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ksh5324/patternier.git"
},
"homepage": "https://github.com/ksh5324/patternier",
"bugs": {
"url": "https://github.com/ksh5324/patternier/issues"
},
"keywords": [
"architecture",
"lint",
"linter",
"pattern",
"layer",
"slice",
"monorepo",
"cli",
"fsd"
]
}