-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
62 lines (62 loc) · 1.52 KB
/
package.json
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
{
"name": "nypm",
"version": "0.4.1",
"description": "Unified Package Manager for Node.js",
"repository": "unjs/nypm",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"bin": {
"nypm": "./dist/cli.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "automd && unbuild",
"dev": "vitest dev",
"lint": "eslint . && prettier -c src test",
"lint:fix": "eslint . --fix && prettier -w src test",
"prepack": "unbuild",
"nypm": "jiti src/cli.ts",
"release": "pnpm test && pnpm build && changelogen --release --push && pnpm publish",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit"
},
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.2.3",
"pathe": "^1.1.2",
"tinyexec": "^0.3.1",
"pkg-types": "^1.2.1",
"ufo": "^1.5.4"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"eslint": "^9.16.0",
"eslint-config-unjs": "^0.4.2",
"jiti": "^2.4.1",
"prettier": "^3.4.2",
"std-env": "^3.8.0",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": "^14.16.0 || >=16.10.0"
}
}