-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.45 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
54
55
56
57
58
59
60
{
"name": "nekos",
"version": "3.2.4",
"description": "Let's have cute cats mess around in the log!",
"bin": {
"nekos": "bin/nekos.js"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"scripts": {
"test": "cross-env FORCE_COLOR=1 node --experimental-vm-modules node_modules/jest/bin/jest.js",
"clean": "rimraf dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build:types": "tsc",
"build:js": "node scripts/build.js",
"build": "npm run clean && npm run format && npm run build:types && npm run build:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otnc/nekos.git"
},
"keywords": [
"log",
"kawaii",
"joke",
"cat",
"cats",
"neko",
"nekos"
],
"author": "otoneko.",
"license": "MIT",
"bugs": {
"url": "https://github.com/otnc/nekos/issues"
},
"homepage": "https://github.com/otnc/nekos#readme",
"dependencies": {
"@randplus/color": "^3.0.0",
"commander": "^14.0.3",
"consola": "^3.4.2",
"gradient-string": "^3.0.0",
"is-package-latest": "^2.0.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"cross-env": "^10.1.0",
"esbuild": "^0.27.4",
"jest": "^30.3.0",
"prettier": "3.8.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3"
}
}