-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1013 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1013 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
{
"name": "library-packer",
"description": "Minimal but complete packer with declarations and maps.",
"version": "0.0.0",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/aprosail/library-packer.git"
},
"bin": {
"library-pack": "out/main.js"
},
"exports": {
"./tsconfig.json": "./tsconfig.json",
".": {
"import": "./out/index.js",
"types": "./out/index.d.ts"
}
},
"scripts": {
"format": "prettier --write .",
"review": "prettier --check . && oxlint",
"build": "tsx src/main.ts",
"test": "vitest run",
"dev": "vitest"
},
"dependencies": {
"consola": "^3.4.2",
"glob": "^11.0.3",
"oxc-transform": "^0.93.0",
"strip-json-comments": "^5.0.3",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^24.6.2",
"oxlint": "^1.19.0",
"prettier": "^3.6.2",
"prettier-plugin-sh": "^0.18.0",
"tsx": "^4.20.6",
"vitest": "^3.2.4"
}
}