-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.99 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
{
"name": "zyme",
"version": "1.0.0",
"description": "⚡️ Onboarding at Lightning Speed",
"imports": {
"#*": "./src/*"
},
"keywords": [
"onboarding",
"open-source-onboarding",
"open-source-contribution",
"developer-onboarding",
"contribution-guide"
],
"repository": {
"type": "git",
"url": "https://github.com/mohsenshafiei/zyme.git"
},
"license": "MIT",
"type": "module",
"exports": null,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist", "*.d.ts"],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:local": "turbo run build:local",
"build:prod": "turbo run build:prod",
"build:publish": "turbo run build:publish",
"clean": "turbo run clean",
"link": "turbo run link",
"test": "turbo run test",
"lint": "biome check .",
"lint:write": "biome check --write --diagnostic-level=error .",
"lint:linter": "biome lint --write --diagnostic-level=error .",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@biomejs/biome": "1.8.3",
"@types/node": "^20.14.10",
"@types/npm-registry-fetch": "^8.0.7",
"@vitest/coverage-v8": "^1.6.0",
"changelogen": "^0.5.5",
"esbuild": "0.23.1",
"husky": "9.1.5",
"knip": "5.29.2",
"ky": "^1.7.2",
"lint-staged": "15.2.10",
"picocolors": "1.1.0",
"rimraf": "6.0.1",
"taze": "0.16.7",
"tsup": "^8.2.4",
"turbo": "2.1.1",
"typescript": "^5.5.3",
"vitest": "^1.6.0",
"yargs": "17.7.2"
},
"dependencies": {
"execa": "^9.3.1",
"find-up": "^7.0.0",
"npm-registry-fetch": "^17.1.0",
"ora": "^8.1.0",
"read-pkg": "^9.0.1",
"terminal-link": "^3.0.0"
},
"engines": {
"node": "^14.18.0 || >=16.10.0"
},
"pkg": {
"outputPath": "./package/"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}