-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
63
64
65
66
{
"name": "universal-npm",
"version": "1.2.2",
"description": "Universal Node.js Package Manager",
"license": "Apache-2.0",
"author": "wmdanor",
"repository": "https://github.com/wmdanor-universe/universal-npm",
"keywords": [
"unpm",
"universal",
"package manager",
"npm",
"yarn",
"pnpm",
"proxy",
"aggregating"
],
"scripts": {
"build": "pnpm swc && pnpm pregenerate-files",
"dev": "concurrently \"pnpm typecheck:watch\" \"pnpm swc:watch\" \"pnpm pregenerate-files:watch\"",
"test": "jest",
"swc": "swc src -d dist --delete-dir-on-start",
"swc:watch": "swc src -d dist --delete-dir-on-start --watch",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch --incremental",
"pregenerate-files": "ts-node scripts/pregenerate-files.ts",
"pregenerate-files:watch": "nodemon --exec \"pnpm pregenerate-files\" --watch dist",
"lint": "eslint src/**/* scripts/**/* __tests__/**/*",
"release": "ts-node scripts/release.ts",
"create-command": "ts-node scripts/create-command.ts"
},
"files": [
"dist",
"generated",
"external/**/*.js"
],
"bin": {
"unpm": "dist/bin/unpm.js"
},
"devDependencies": {
"@jest/types": "^29.5.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.56",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.0",
"@types/node": "^18.14.0",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^7.6.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@swc/helpers": "^0.5.1",
"ajv": "^8.12.0",
"preferred-pm": "^3.0.3",
"yargs": "^17.7.0"
}
}