-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "@kallookoo/semver-lite",
"version": "1.0.0",
"description": "A lightweight library for comparing semantic versions.",
"homepage": "https://github.com/kallookoo/semver-lite#readme",
"bugs": {
"url": "https://github.com/kallookoo/semver-lite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kallookoo/semver-lite.git"
},
"license": "MIT",
"author": "Sergio (kallookoo)",
"keywords": [
"semver",
"version",
"compare"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.min.js",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "rollup -c"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"rollup": "^2.79.2",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vitest": "^3.2.4"
}
}