generated from Deuscx/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.49 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
{
"name": "idle-scheduler",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@8.12.0",
"author": "Deuscx",
"license": "MIT",
"funding": "https://github.com/sponsors/deuscx",
"homepage": "https://github.com/deuscx/idle-scheduler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/deuscx/idle-scheduler.git"
},
"bugs": "https://github.com/deuscx/idle-scheduler/issues",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "tsx ./src/index.ts",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:update": "vitest -u",
"prepublishOnly": "nr build",
"postinstall": "npx simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.3",
"bumpp": "^9.2.1",
"eslint": "^8.55.0",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vite": "5.0.2",
"vite-plugin-inspect": "^0.8.1",
"vitest": "^1.0.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
}
}