-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.36 KB
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
{
"name": "@divlook/library-starter-example",
"version": "0.2.1",
"description": "TypeScript library starter",
"repository": {
"type": "git",
"url": "https://github.com/divlook/ts-library-starter.git"
},
"license": "MIT",
"main": "./dist/lib.js",
"module": "./dist/lib.mjs",
"browser": "./dist/lib.umd.js",
"types": "./dist/lib.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc && vite build",
"eslint": "eslint --cache --cache-file=node_modules/.cache/eslint/.eslintcache src/*",
"eslint:fix": "pnpm eslint --fix",
"local": "tsc && vite build --mode=development",
"prepare": "is-ci || husky install",
"prettier": "prettier -c --cache src/*",
"prettier:fix": "pnpm prettier -w",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"change-case": "^4.1.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.0.2"
}
}