generated from diba1013/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"name": "@diba1013/typescript-starter",
"version": "0.0.1",
"description": "",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/diba1013/typescript-starter.git"
},
"author": "diba1013",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"type": "module",
"files": [
"dist"
],
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "vite build",
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@diba1013/di": "^0.2.0",
"@diba1013/rest": "file:diba1013-rest-0.2.2.tgz",
"@diba1013/solid": "file:diba1013-solid-0.0.1.tgz",
"@unocss/reset": "^0.57.0",
"solid-js": "^1.8.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@diba1013/eslint-config": "^0.9.0",
"@diba1013/prettier-config": "^0.9.0",
"@diba1013/tscz": "^0.2.1",
"@types/node": "^20.8.7",
"@unocss/preset-web-fonts": "^0.57.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"typescript": "^5.2",
"unocss": "^0.57.0",
"vite": "^4.5.0",
"vite-plugin-solid": "^2.7.2",
"vitest": "^0.34.6"
}
}