-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
{
"name": "@weebat/utils",
"type": "module",
"version": "0.0.4",
"description": "personal toolkit",
"repository": {
"type": "git",
"url": "https://github.com/aweirdocc/weebay-utils.git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"release": "npm run build && npm publish --access public",
"test": "vitest"
},
"files": [
"dist",
"*.d.ts"
],
"keywords": [
"typescript",
"utils"
],
"author": "alilis",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"eslint": "8.31.0",
"lint-staged": "^14.0.1",
"pnpm": "^8.8.0",
"rollup": "^4.1.3",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --allow-empty --concurrent false"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}