-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "dynamic-installer",
"version": "2.0.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:cjs-package",
"build:esm": "tsc",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:cjs-package": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"author": "Manuel Otero",
"license": "MIT",
"description": "Allows installing dependencies dynamically through code instead of using npm install in the terminal",
"keywords": [
"dynamic",
"installer",
"dependencies",
"npm-install"
],
"devDependencies": {
"@types/node": "^24.7.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {},
"files": [
"dist",
"CHANGELOG.md",
"README.md"
]
}