-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.53 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.53 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "oopm",
"version": "2.0.1",
"description": "OOMOL Package Manager",
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"type": "module",
"bin": {
"oopm": "dist/bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/oomol-lab/oopm"
},
"publishConfig": {
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup-node",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ts-check": "tsc --noEmit",
"test": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"files": [
"src",
"dist"
],
"keywords": [
"oomol",
"package manager"
],
"author": "Kevin Cui <bh@bugs.cc>",
"license": "MIT",
"devDependencies": {
"@antfu/eslint-config": "4.4.0",
"@types/node": "22.13.9",
"@vitest/coverage-v8": "3.0.7",
"@vitest/ui": "3.0.7",
"eslint": "9.21.0",
"fastify": "5.2.1",
"get-port": "7.1.0",
"tsup": "8.4.0",
"typescript": "5.8.2",
"vitest": "3.0.7"
},
"packageManager": "pnpm@9.11.0",
"dependencies": {
"commander": "^13.1.0",
"execa": "^9.5.0",
"globby": "^14.0.2",
"p-limit": "^6.2.0",
"tar": "^7.4.3",
"yaml": "^2.6.0"
}
}