-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "blnd",
"version": "1.0.3",
"description": "",
"type": "module",
"main": "dist/index.js",
"bin": {
"blend": "dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"dev": "node --loader ts-node/esm src/index.ts",
"prepare": "npm run build && husky install",
"build": "rimraf dist && vite build && chmod +x dist/index.mjs",
"lint": "eslint . --max-warnings=0",
"test": "vitest",
"coverage": "vitest run --coverage",
"type-check": "tsc --noEmit"
},
"keywords": [
"git",
"lightweight",
"package-manager",
"dependency-manager",
"modules",
"dependencies"
],
"author": "Max Nowack <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/maxnowack/blend.git"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@rollup/plugin-typescript": "12.1.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/temp": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-istanbul": "^2.0.4",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-vitest": "0.5.4",
"husky": "9.1.7",
"rimraf": "6.0.1",
"rollup-plugin-typescript-paths": "1.5.0",
"ts-node": "^10.9.2",
"tslib": "2.8.1",
"typescript": "^5.5.4",
"vite": "6.1.0",
"vite-plugin-dts": "4.5.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "^2.0.4",
"vitest-github-actions-reporter": "^0.11.1"
},
"dependencies": {
"js-yaml": "^4.1.0",
"temp": "^0.9.4"
}
}