generated from Himenon/template-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.28 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@himenon/path-oriented-data-structure",
"version": "1.0.2",
"description": "A composite pattern with a Path-oriented data structure.",
"keywords": [
"path-oriented",
"structure",
"composite-pattern",
"design-pattern"
],
"homepage": "https://github.com/Himenon/path-oriented-data-structure#readme",
"bugs": {
"url": "https://github.com/Himenon/path-oriented-data-structure/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Himenon/path-oriented-data-structure.git"
},
"license": "MIT",
"author": {
"name": "Himenon",
"email": "[email protected]",
"url": "https://github.com/Himenon"
},
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"dist": "dist"
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsup src/*.ts",
"clean": "rimraf dist",
"format": "biome format --write .",
"validate": "biome check --apply .",
"lerna:version:up": "lerna version --yes",
"release:github:registry": "yarn publish --registry https://npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}",
"release:npm:registry": "yarn publish",
"test": "run-s test:depcruise test:vitest",
"test:depcruise": "depcruise --validate .dependency-cruiser.js src",
"test:vitest": "vitest",
"ts": "ts-node -P tsconfig.build.json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,json,yml,yaml,html,md,ts,tsx}": [
"biome format --no-errors-on-unmatched --write"
]
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@swc/core": "^1.3.107",
"@types/node": "20.11.16",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"conventional-changelog-angular-all": "1.7.0",
"cross-env": "^7.0.3",
"dependency-cruiser": "^16.1.0",
"lerna": "8.0.2",
"lint-staged": "15.2.1",
"npm-run-all": "4.1.5",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"publishConfig": {
"access": "public"
}
}