-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.98 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
{
"name": "typescript-library-starter",
"version": "0.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/ms-fadaei/typescript-library-starter.git"
},
"homepage": "https://github.com/ms-fadaei/typescript-library-starter",
"license": "MIT",
"scripts": {
"dev": "vite --config ./playground/vite.config.ts",
"generate": "vite --config ./playground/vite.config.ts build",
"build": "tsc && unbuild",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"release": "yarn test && npx standard-version && git push --follow-tags && npm publish --access public"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*": "prettier -w -u"
},
"keywords": [
"typescript",
"vite",
"unbuild",
"vitest",
"eslint"
],
"author": "Mohammad Saleh Fadaei <[email protected]> (https://twitter.com/ms_fadaei)",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/types": "7.19.0",
"@types/node": "17.0.17",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "7.0.4",
"jsdom": "19.0.0",
"lint-staged": "12.5.0",
"path": "0.12.7",
"prettier": "2.7.1",
"standard-version": "9.3.2",
"typescript": "4.8.3",
"unbuild": "0.8.11",
"vite": "2.9.12",
"vitest": "0.23.4"
},
"bugs": {
"url": "https://github.com/ms-fadaei/typescript-library-starter/issues"
},
"directories": {
"test": "tests"
},
"dependencies": {}
}