-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1004 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
42
43
44
{
"name": "version-code",
"version": "1.0.0",
"description": "版本号管理、比较",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"format": "prettier --write .",
"lint": "eslint .",
"ci:publish": "pnpm publish --no-git-checks --recursive --access public"
},
"keywords": [
"version",
"compare"
],
"author": "Jander Fan",
"license": "ISC",
"packageManager": "pnpm@10.33.0",
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"jiti": "^2.6.1",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
},
"module": "dist/index.js",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/JanderFan/version-code"
}
}