-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "jxk",
"type": "module",
"version": "0.1.12",
"private": false,
"description": "A relatively commonly used tool and function",
"author": "xkloveme <xkloveme@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/xkloveme/jxk#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xkloveme/jxk.git"
},
"bugs": "https://github.com/xkloveme/jxk/issues",
"keywords": [
"jxk",
"jixk",
"小康",
"小康函数",
"xkloveme",
"tools"
],
"sideEffects": false,
"exports": {
".": {
"import": "./lib/index.es.js",
"require": "./lib/index.cjs.js",
"types": "./lib/index.d.ts"
}
},
"main": "./lib/index.cjs.js",
"module": "./lib/index.es.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"gen": "node generate.js",
"docs": "rimraf docs & jsdoc -c jsdoc.json",
"dev": "npm run gen && npm run play",
"build": "npm run gen && vite build",
"lint": "eslint .",
"play": "vite playground",
"play:install": "pnpm -r --filter=playground install",
"play:build": "pnpm -r --filter=playground run build-preview",
"release": "bumpp",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^3.2.2",
"@antfu/utils": "^0.7.10",
"@types/node": "^22.5.4",
"bumpp": "^9.5.2",
"date-fns": "^3.6.0",
"docdash-extended-xkloveme": "^1.0.3",
"esbuild": "0.23.1",
"eslint": "^9.9.1",
"esno": "^4.7.0",
"jsdoc": "^4.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-dts": "~4.0.3",
"vite-plugin-git-version": "^1.0.7",
"vitest": "^2.0.5"
}
}