-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.14 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.14 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
49
50
51
52
53
{
"name": "@charrue/node-toolkit",
"version": "0.4.0",
"description": "A develop toolkit for Node.js",
"keywords": [
"typescript",
"node",
"toolkit",
"charrue"
],
"repository": {
"type": "git",
"url": "git+https://github.com/charrue/node-toolkit"
},
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"lint": "eslint src/*.ts --fix",
"prepare": "husky install",
"test": "vitest"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"dependencies": {
"rimraf": "^3.0.2"
},
"devDependencies": {
"@charrue/eslint-config-typescript": "^0.3.0",
"@types/rimraf": "^3.0.2",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"tslib": "^2.3.1",
"tsup": "^6.5.0",
"type-fest": "^3.3.0",
"typescript": "^4.5.2",
"vitest": "latest"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"readme": "https://github.com/charrue/node-toolkit/README.md"
}