-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "@kakang/utils",
"version": "0.5.6",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/index.js"
}
},
"directories": {
"lib": "lib"
},
"scripts": {
"clean": "node ../../scripts/build.mjs --clean",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"build": "node ../../scripts/build.mjs --build=\"all\"",
"build:cjs": "node ../../scripts/build.mjs --build='cjs'",
"build:mjs": "node ../../scripts/build.mjs --build='mjs'",
"unit": "cross-env \"NODE_OPTIONS=--require ts-node/register\" unit",
"test": "npm run lint && npm run unit",
"coverage": "cross-env \"NODE_OPTIONS=--require ts-node/register\" c8 unit",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/kaka-ng/nodejs.git"
},
"author": "KaKa <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@kakang/unit": "workspace:^",
"@types/node": "^22.10.2",
"c8": "^10.1.3",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"neostandard": "^0.12.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "~5.7.2"
},
"dependencies": {
"pinyin-pro": "^3.26.0"
}
}