-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "lxc-idmapper",
"type": "module",
"version": "0.1.1",
"description": "LXC unprivileged mapper for user and group IDs",
"repository": "https://github.com/hywax/lxc-idmapper",
"exports": {
".": {
"import": "./dist/lxc-idmapper.js",
"require": "./dist/lxc-idmapper.cjs"
}
},
"main": "./dist/lxc-idmapper.cjs",
"module": "./dist/lxc-idmapper.js",
"types": "./dist/lxc-idmapper.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release": "pnpm test && pnpm build && changelogen --release --push && pnpm publish",
"lint": "eslint . --fix",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^22.15.17",
"@vitest/coverage-v8": "^3.1.3",
"camelcase": "^8.0.0",
"changelogen": "^0.6.1",
"eslint": "^9.26.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.3"
},
"lint-staged": {
"*.ts": "pnpm run lint"
}
}