-
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) · 909 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 909 Bytes
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": "chainsi",
"version": "0.0.1",
"author": "Ubugeeei <ubuge1122@gmail.com>",
"license": "MIT",
"description": "ANSI escape color code generator by property-chaining based API",
"keywords": [
"ansi",
"color"
],
"repository": {
"type": "git",
"url": "https://github.com/ublib/chainsi",
"directory": "src"
},
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsx build",
"fmt": "npx @biomejs/biome format .",
"lint": "oxlint",
"deploy": "pnpm run build && pnpm publish --access=public"
},
"volta": {
"node": "20.10.0",
"pnpm": "8.12.1"
},
"devDependencies": {
"@types/dts-bundle": "^0.0.35",
"@types/node": "^20.10.5",
"dts-bundle": "^0.7.3",
"esbuild": "^0.19.9",
"oxlint": "latest",
"rimraf": "^5.0.5",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
}
}