-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.17 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@ow3/dummy-ts-pkg",
"version": "0.2.3",
"packageManager": "pnpm@7.3.0",
"description": "",
"author": "Chris Breuer <chris@ow3.org>",
"license": "MIT",
"homepage": "https://github.com/openwebstacks/ts-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/openwebstacks/ts-starter.git"
},
"bugs": {
"url": "https://github.com/openwebstacks/ts-starter/issues"
},
"keywords": [
"typescript",
"starter",
"kit",
"package"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=v16.15.1",
"pnpm": ">=7.3.0"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fresh": "rimraf node_modules/ pnpm-lock.yaml && pnpm i",
"commit": "git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "pnpm run build",
"release": "npx bumpp package.json --execute 'pnpm run changelog' --all",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@types/node": "^17.0.32",
"bumpp": "^8.2.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-git": "^1.3.5",
"eslint": "^8.18.0",
"esno": "^0.16.3",
"lint-staged": "^13.0.2",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.7.4",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.2"
},
"simple-git-hooks": {
"pre-commit": "npx --no-install lint-staged",
"commit-msg": "npx --no -- commitlint --edit $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}