-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "jtk",
"version": "0.1.0",
"description": "Jaxon's Typescript Kit",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --cache --cache-location node_modules/.cache/eslint/ .",
"format": "prettier --write --cache .",
"check": "tsc",
"test": "bun test",
"prepublish": "pnpm run check && pnpm run test",
"publish": "pnpm publish --access=public --registry=https://registry.npmjs.org/"
},
"keywords": [
"tool",
"util",
"kit",
"typescript"
],
"type": "module",
"author": "Jingchen Zhao",
"license": "MIT",
"packageManager": "pnpm@9.4.0+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74",
"devDependencies": {
"@jaxonzhao/boot": "^0.1.0",
"@types/bun": "^1.1.4",
"@types/node": "^20.14.5",
"bun": "^1.1.13",
"eslint": "^8",
"mitata": "^0.1.11",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.11"
},
"sideEffects": false,
"dependencies": {
"chalk": "^5.3.0"
}
}